diff --git a/kore/src/Kore/Attribute/Symbol/SymbolKywd.hs b/kore/src/Kore/Attribute/Symbol/SymbolKywd.hs index c5347639d1..cedbb3f377 100644 --- a/kore/src/Kore/Attribute/Symbol/SymbolKywd.hs +++ b/kore/src/Kore/Attribute/Symbol/SymbolKywd.hs @@ -20,7 +20,7 @@ import Prelude.Kore Hold an optional Text, which is an empty string if the attribute had no argument. Use sites can check emptiness to achieve old behaviour. -} -newtype SymbolKywd = SymbolKywd {getSymbol :: Maybe Text} +newtype SymbolKywd = SymbolKywd {getSymbolKywd :: Maybe Text} deriving stock (Eq, Ord, Show) deriving stock (GHC.Generic) deriving anyclass (Hashable, NFData) @@ -50,13 +50,13 @@ instance ParseAttributes SymbolKywd where -- if an argument is present, use it for the contents, otherwise -- leave it empty (but present) to signal presence of the attribute. parseAttribute = - withApplication symbolKywdId $ \params args SymbolKywd{getSymbol} -> do + withApplication symbolKywdId $ \params args SymbolKywd{getSymbolKywd} -> do Parser.getZeroParams params mbArg <- Parser.getZeroOrOneArguments args - unless (isNothing getSymbol) $ failDuplicate symbolKywdId + unless (isNothing getSymbolKywd) $ failDuplicate symbolKywdId StringLiteral arg <- maybe (pure $ StringLiteral "") getStringLiteral mbArg pure $ SymbolKywd (Just arg) instance From SymbolKywd Attributes where from = - maybe def (from @AttributePattern . symbolKywdAttribute) . getSymbol + maybe def (from @AttributePattern . symbolKywdAttribute) . getSymbolKywd diff --git a/kore/src/Kore/Builtin/Endianness.hs b/kore/src/Kore/Builtin/Endianness.hs index 58bbff8cf4..98cef763f9 100644 --- a/kore/src/Kore/Builtin/Endianness.hs +++ b/kore/src/Kore/Builtin/Endianness.hs @@ -62,9 +62,9 @@ endiannessVerifier ctor = worker application = do -- TODO (thomas.tuegel): Move the checks into the symbol verifiers. unless (null arguments) (koreFail "expected zero arguments") - let Attribute.Symbol.SymbolKywd{getSymbol} = + let Attribute.Symbol.SymbolKywd{getSymbolKywd} = Attribute.Symbol.symbolKywd $ symbolAttributes symbol - unless (isJust getSymbol) (koreFail "expected symbol'Kywd'{}() attribute") + unless (isJust getSymbolKywd) (koreFail "expected symbol'Kywd'{}() attribute") return (EndiannessF . Const $ ctor symbol) where arguments = applicationChildren application diff --git a/kore/src/Kore/Builtin/Signedness.hs b/kore/src/Kore/Builtin/Signedness.hs index 47cac25c2b..6535109a16 100644 --- a/kore/src/Kore/Builtin/Signedness.hs +++ b/kore/src/Kore/Builtin/Signedness.hs @@ -62,9 +62,9 @@ signednessVerifier ctor = worker application = do -- TODO (thomas.tuegel): Move the checks into the symbol verifiers. unless (null arguments) (koreFail "expected zero arguments") - let Attribute.Symbol.SymbolKywd{getSymbol} = + let Attribute.Symbol.SymbolKywd{getSymbolKywd} = Attribute.Symbol.symbolKywd $ symbolAttributes symbol - unless (isJust getSymbol) (koreFail "expected symbol'Kywd'{}() attribute") + unless (isJust getSymbolKywd) (koreFail "expected symbol'Kywd'{}() attribute") return (SignednessF . Const $ ctor symbol) where arguments = applicationChildren application diff --git a/kore/src/Kore/Builtin/Verifiers.hs b/kore/src/Kore/Builtin/Verifiers.hs index a5055d9a38..a1f01d91a8 100644 --- a/kore/src/Kore/Builtin/Verifiers.hs +++ b/kore/src/Kore/Builtin/Verifiers.hs @@ -171,7 +171,7 @@ lookupApplicationVerifier :: ApplicationVerifiers patternType -> Maybe (ApplicationVerifier patternType) lookupApplicationVerifier symbol verifiers = do - key <- getHook symbol <|> getKlabel symbol + key <- getHook symbol <|> getKlabel symbol <|> getSymbolKywd symbol HashMap.lookup key verifiers where getHook = @@ -184,6 +184,11 @@ lookupApplicationVerifier symbol verifiers = do . Attribute.Symbol.getKlabel . Attribute.Symbol.klabel . symbolAttributes + getSymbolKywd = + fmap KlabelSymbolKey + . Attribute.Symbol.getSymbolKywd + . Attribute.Symbol.symbolKywd + . symbolAttributes applicationPatternVerifierHooks :: ApplicationVerifiers patternType -> diff --git a/kore/src/Kore/Internal/Symbol.hs b/kore/src/Kore/Internal/Symbol.hs index d7712f6ae6..2d724a8997 100644 --- a/kore/src/Kore/Internal/Symbol.hs +++ b/kore/src/Kore/Internal/Symbol.hs @@ -229,11 +229,11 @@ klabel name = (typed @Attribute.Symbol . typed @Attribute.Klabel) Attribute.Klabel{getKlabel = Just name} -symbolKywd :: Symbol -> Symbol -symbolKywd = +symbolKywd :: Text -> Symbol -> Symbol +symbolKywd name = Lens.set (typed @Attribute.Symbol . typed @Attribute.SymbolKywd) - Attribute.SymbolKywd{getSymbol = Just ""} + Attribute.SymbolKywd{getSymbolKywd = Just name} {- | Coerce a sort injection symbol's source and target sorts. diff --git a/kore/test/Test/Kore/Attribute/Symbol.hs b/kore/test/Test/Kore/Attribute/Symbol.hs index 62fd491086..dcb2db1ed0 100644 --- a/kore/test/Test/Kore/Attribute/Symbol.hs +++ b/kore/test/Test/Kore/Attribute/Symbol.hs @@ -187,7 +187,7 @@ test_SymbolKywd = [ testCase "parseAttribute" $ assertEqual "[symbolKywd{}()]" - (Right SymbolKywd{getSymbol = Just ""}) + (Right SymbolKywd{getSymbolKywd = Just ""}) (symbolKywd <$> parse [symbolKywdAttribute ""]) , testCase "defaultSymbolAttributes" $ assertEqual diff --git a/kore/test/Test/Kore/Attribute/Symbol/SymbolKywd.hs b/kore/test/Test/Kore/Attribute/Symbol/SymbolKywd.hs index 39e155d860..8933c49605 100644 --- a/kore/test/Test/Kore/Attribute/Symbol/SymbolKywd.hs +++ b/kore/test/Test/Kore/Attribute/Symbol/SymbolKywd.hs @@ -20,7 +20,7 @@ parseSymbolKywd = parseAttributes test_symbolKywd :: TestTree test_symbolKywd = testCase "[symbolKywd{}()] :: SymbolKywd" $ - expectSuccess SymbolKywd{getSymbol = Just ""} $ + expectSuccess SymbolKywd{getSymbolKywd = Just ""} $ parseSymbolKywd $ Attributes [symbolKywdAttribute ""] @@ -42,7 +42,7 @@ test_duplicate = test_argument :: TestTree test_argument = testCase "[symbolKywd{}(\"legal\")]" $ - expectSuccess SymbolKywd{getSymbol = Just "legal"} $ + expectSuccess SymbolKywd{getSymbolKywd = Just "legal"} $ parseSymbolKywd $ Attributes [legalAttribute] where diff --git a/kore/test/Test/Kore/Builtin/Definition.hs b/kore/test/Test/Kore/Builtin/Definition.hs index f9ab1dcca3..ddd82f3b6e 100644 --- a/kore/test/Test/Kore/Builtin/Definition.hs +++ b/kore/test/Test/Kore/Builtin/Definition.hs @@ -54,7 +54,6 @@ import Kore.Internal.Symbol ( function, hook, injective, - klabel, smthook, sortInjection, symbolKywd, @@ -732,32 +731,28 @@ concatString x y = mkApplySymbol concatStringSymbol [x, y] littleEndianBytesSymbol :: Internal.Symbol littleEndianBytesSymbol = builtinSymbol "littleEndianBytes" endiannessSort [] - & klabel "littleEndianBytes" - & symbolKywd + & symbolKywd "littleEndianBytes" littleEndianBytes :: InternalVariable variable => TermLike variable littleEndianBytes = mkEndianness (Endianness.LittleEndian littleEndianBytesSymbol) bigEndianBytesSymbol :: Internal.Symbol bigEndianBytesSymbol = builtinSymbol "bigEndianBytes" endiannessSort [] - & klabel "bigEndianBytes" - & symbolKywd + & symbolKywd "bigEndianBytes" bigEndianBytes :: InternalVariable variable => TermLike variable bigEndianBytes = mkEndianness (Endianness.BigEndian bigEndianBytesSymbol) signedBytesSymbol :: Internal.Symbol signedBytesSymbol = builtinSymbol "signedBytes" signednessSort [] - & klabel "signedBytes" - & symbolKywd + & symbolKywd "signedBytes" signedBytes :: InternalVariable variable => TermLike variable signedBytes = mkSignedness (Signedness.Signed signedBytesSymbol) unsignedBytesSymbol :: Internal.Symbol unsignedBytesSymbol = builtinSymbol "unsignedBytes" signednessSort [] - & klabel "unsignedBytes" - & symbolKywd + & symbolKywd "unsignedBytes" unsignedBytes :: InternalVariable variable => TermLike variable unsignedBytes = mkSignedness (Signedness.Unsigned unsignedBytesSymbol) diff --git a/test/issue-3508/definition.kore b/test/issue-3508/definition.kore index 79eaef7bd6..8f940b9d70 100644 --- a/test/issue-3508/definition.kore +++ b/test/issue-3508/definition.kore @@ -122,75 +122,75 @@ module IMP // symbols symbol Lbl'BangUndsUnds'IMP-SYNTAX'Unds'BExp'Unds'BExp{}(SortBExp{}) : SortBExp{} [functional{}(), constructor{}(), strict{}(""), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(Lbl'UndsAnd-And-UndsUnds'IMP-SYNTAX'Unds'BExp'Unds'BExp'Unds'BExp{}()), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,20,14,55)"), left{}(), format{}("%c!%r %1"), injective{}()] - symbol Lbl'Hash'E2BIG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#E2BIG"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2317,22,2317,55)"), left{}(), format{}("%c#E2BIG%r"), injective{}()] - symbol Lbl'Hash'EACCES{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EACCES"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2318,22,2318,57)"), left{}(), format{}("%c#EACCES%r"), injective{}()] - symbol Lbl'Hash'EADDRINUSE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EADDRINUSE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2367,22,2367,65)"), left{}(), format{}("%c#EADDRINUSE%r"), injective{}()] - symbol Lbl'Hash'EADDRNOTAVAIL{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EADDRNOTAVAIL"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2368,22,2368,71)"), left{}(), format{}("%c#EADDRNOTAVAIL%r"), injective{}()] - symbol Lbl'Hash'EAFNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EAFNOSUPPORT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2366,22,2366,69)"), left{}(), format{}("%c#EAFNOSUPPORT%r"), injective{}()] - symbol Lbl'Hash'EAGAIN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EAGAIN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2319,22,2319,57)"), left{}(), format{}("%c#EAGAIN%r"), injective{}()] - symbol Lbl'Hash'EALREADY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EALREADY"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2356,22,2356,61)"), left{}(), format{}("%c#EALREADY%r"), injective{}()] - symbol Lbl'Hash'EBADF{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EBADF"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2320,22,2320,55)"), left{}(), format{}("%c#EBADF%r"), injective{}()] - symbol Lbl'Hash'EBUSY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EBUSY"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2321,22,2321,55)"), left{}(), format{}("%c#EBUSY%r"), injective{}()] - symbol Lbl'Hash'ECHILD{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ECHILD"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2322,22,2322,57)"), left{}(), format{}("%c#ECHILD%r"), injective{}()] - symbol Lbl'Hash'ECONNABORTED{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ECONNABORTED"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2372,22,2372,69)"), left{}(), format{}("%c#ECONNABORTED%r"), injective{}()] - symbol Lbl'Hash'ECONNREFUSED{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ECONNREFUSED"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2380,22,2380,69)"), left{}(), format{}("%c#ECONNREFUSED%r"), injective{}()] - symbol Lbl'Hash'ECONNRESET{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ECONNRESET"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2373,22,2373,65)"), left{}(), format{}("%c#ECONNRESET%r"), injective{}()] - symbol Lbl'Hash'EDEADLK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EDEADLK"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2323,22,2323,59)"), left{}(), format{}("%c#EDEADLK%r"), injective{}()] - symbol Lbl'Hash'EDESTADDRREQ{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EDESTADDRREQ"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2358,22,2358,69)"), left{}(), format{}("%c#EDESTADDRREQ%r"), injective{}()] - symbol Lbl'Hash'EDOM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EDOM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2324,22,2324,53)"), left{}(), format{}("%c#EDOM%r"), injective{}()] - symbol Lbl'Hash'EEXIST{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EEXIST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2325,22,2325,57)"), left{}(), format{}("%c#EEXIST%r"), injective{}()] - symbol Lbl'Hash'EFAULT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EFAULT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2326,22,2326,57)"), left{}(), format{}("%c#EFAULT%r"), injective{}()] - symbol Lbl'Hash'EFBIG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EFBIG"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2327,22,2327,55)"), left{}(), format{}("%c#EFBIG%r"), injective{}()] - symbol Lbl'Hash'EHOSTDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EHOSTDOWN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2381,22,2381,63)"), left{}(), format{}("%c#EHOSTDOWN%r"), injective{}()] - symbol Lbl'Hash'EHOSTUNREACH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EHOSTUNREACH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2382,22,2382,69)"), left{}(), format{}("%c#EHOSTUNREACH%r"), injective{}()] - symbol Lbl'Hash'EINPROGRESS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EINPROGRESS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2355,22,2355,67)"), left{}(), format{}("%c#EINPROGRESS%r"), injective{}()] - symbol Lbl'Hash'EINTR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EINTR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2328,22,2328,55)"), left{}(), format{}("%c#EINTR%r"), injective{}()] - symbol Lbl'Hash'EINVAL{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EINVAL"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2329,22,2329,57)"), left{}(), format{}("%c#EINVAL%r"), injective{}()] - symbol Lbl'Hash'EIO{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EIO"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2330,22,2330,51)"), left{}(), format{}("%c#EIO%r"), injective{}()] - symbol Lbl'Hash'EISCONN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EISCONN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2375,22,2375,59)"), left{}(), format{}("%c#EISCONN%r"), injective{}()] - symbol Lbl'Hash'EISDIR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EISDIR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2331,22,2331,57)"), left{}(), format{}("%c#EISDIR%r"), injective{}()] - symbol Lbl'Hash'ELOOP{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ELOOP"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2383,22,2383,55)"), left{}(), format{}("%c#ELOOP%r"), injective{}()] - symbol Lbl'Hash'EMFILE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EMFILE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2332,22,2332,57)"), left{}(), format{}("%c#EMFILE%r"), injective{}()] - symbol Lbl'Hash'EMLINK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EMLINK"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2333,22,2333,57)"), left{}(), format{}("%c#EMLINK%r"), injective{}()] - symbol Lbl'Hash'EMSGSIZE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EMSGSIZE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2359,22,2359,61)"), left{}(), format{}("%c#EMSGSIZE%r"), injective{}()] - symbol Lbl'Hash'ENAMETOOLONG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENAMETOOLONG"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2334,22,2334,69)"), left{}(), format{}("%c#ENAMETOOLONG%r"), injective{}()] - symbol Lbl'Hash'ENETDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENETDOWN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2369,22,2369,61)"), left{}(), format{}("%c#ENETDOWN%r"), injective{}()] - symbol Lbl'Hash'ENETRESET{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENETRESET"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2371,22,2371,63)"), left{}(), format{}("%c#ENETRESET%r"), injective{}()] - symbol Lbl'Hash'ENETUNREACH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENETUNREACH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2370,22,2370,67)"), left{}(), format{}("%c#ENETUNREACH%r"), injective{}()] - symbol Lbl'Hash'ENFILE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENFILE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2335,22,2335,57)"), left{}(), format{}("%c#ENFILE%r"), injective{}()] - symbol Lbl'Hash'ENOBUFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOBUFS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2374,22,2374,59)"), left{}(), format{}("%c#ENOBUFS%r"), injective{}()] - symbol Lbl'Hash'ENODEV{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENODEV"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2336,22,2336,57)"), left{}(), format{}("%c#ENODEV%r"), injective{}()] - symbol Lbl'Hash'ENOENT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOENT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2337,22,2337,57)"), left{}(), format{}("%c#ENOENT%r"), injective{}()] - symbol Lbl'Hash'ENOEXEC{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOEXEC"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2338,22,2338,59)"), left{}(), format{}("%c#ENOEXEC%r"), injective{}()] - symbol Lbl'Hash'ENOLCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOLCK"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2339,22,2339,57)"), left{}(), format{}("%c#ENOLCK%r"), injective{}()] - symbol Lbl'Hash'ENOMEM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOMEM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2340,22,2340,57)"), left{}(), format{}("%c#ENOMEM%r"), injective{}()] - symbol Lbl'Hash'ENOPROTOOPT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOPROTOOPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2361,22,2361,67)"), left{}(), format{}("%c#ENOPROTOOPT%r"), injective{}()] - symbol Lbl'Hash'ENOSPC{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOSPC"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2341,22,2341,57)"), left{}(), format{}("%c#ENOSPC%r"), injective{}()] - symbol Lbl'Hash'ENOSYS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOSYS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2342,22,2342,57)"), left{}(), format{}("%c#ENOSYS%r"), injective{}()] - symbol Lbl'Hash'ENOTCONN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOTCONN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2376,22,2376,61)"), left{}(), format{}("%c#ENOTCONN%r"), injective{}()] - symbol Lbl'Hash'ENOTDIR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOTDIR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2343,22,2343,59)"), left{}(), format{}("%c#ENOTDIR%r"), injective{}()] - symbol Lbl'Hash'ENOTEMPTY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOTEMPTY"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2344,22,2344,63)"), left{}(), format{}("%c#ENOTEMPTY%r"), injective{}()] - symbol Lbl'Hash'ENOTSOCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOTSOCK"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2357,22,2357,61)"), left{}(), format{}("%c#ENOTSOCK%r"), injective{}()] - symbol Lbl'Hash'ENOTTY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOTTY"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2345,22,2345,57)"), left{}(), format{}("%c#ENOTTY%r"), injective{}()] - symbol Lbl'Hash'ENXIO{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENXIO"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2346,22,2346,55)"), left{}(), format{}("%c#ENXIO%r"), injective{}()] - symbol Lbl'Hash'EOF{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EOF"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2316,22,2316,51)"), left{}(), format{}("%c#EOF%r"), injective{}()] - symbol Lbl'Hash'EOPNOTSUPP{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EOPNOTSUPP"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2364,22,2364,65)"), left{}(), format{}("%c#EOPNOTSUPP%r"), injective{}()] - symbol Lbl'Hash'EOVERFLOW{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EOVERFLOW"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2384,22,2384,63)"), left{}(), format{}("%c#EOVERFLOW%r"), injective{}()] - symbol Lbl'Hash'EPERM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EPERM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2347,22,2347,55)"), left{}(), format{}("%c#EPERM%r"), injective{}()] - symbol Lbl'Hash'EPFNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EPFNOSUPPORT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2365,22,2365,69)"), left{}(), format{}("%c#EPFNOSUPPORT%r"), injective{}()] - symbol Lbl'Hash'EPIPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EPIPE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2348,22,2348,55)"), left{}(), format{}("%c#EPIPE%r"), injective{}()] - symbol Lbl'Hash'EPROTONOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EPROTONOSUPPORT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2362,22,2362,75)"), left{}(), format{}("%c#EPROTONOSUPPORT%r"), injective{}()] - symbol Lbl'Hash'EPROTOTYPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EPROTOTYPE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2360,22,2360,65)"), left{}(), format{}("%c#EPROTOTYPE%r"), injective{}()] - symbol Lbl'Hash'ERANGE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ERANGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2349,22,2349,57)"), left{}(), format{}("%c#ERANGE%r"), injective{}()] - symbol Lbl'Hash'EROFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EROFS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2350,22,2350,55)"), left{}(), format{}("%c#EROFS%r"), injective{}()] - symbol Lbl'Hash'ESHUTDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ESHUTDOWN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2377,22,2377,63)"), left{}(), format{}("%c#ESHUTDOWN%r"), injective{}()] - symbol Lbl'Hash'ESOCKTNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ESOCKTNOSUPPORT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2363,22,2363,75)"), left{}(), format{}("%c#ESOCKTNOSUPPORT%r"), injective{}()] - symbol Lbl'Hash'ESPIPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ESPIPE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2351,22,2351,57)"), left{}(), format{}("%c#ESPIPE%r"), injective{}()] - symbol Lbl'Hash'ESRCH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ESRCH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2352,22,2352,55)"), left{}(), format{}("%c#ESRCH%r"), injective{}()] - symbol Lbl'Hash'ETIMEDOUT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ETIMEDOUT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2379,22,2379,63)"), left{}(), format{}("%c#ETIMEDOUT%r"), injective{}()] - symbol Lbl'Hash'ETOOMANYREFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ETOOMANYREFS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2378,22,2378,69)"), left{}(), format{}("%c#ETOOMANYREFS%r"), injective{}()] - symbol Lbl'Hash'EWOULDBLOCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EWOULDBLOCK"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2354,22,2354,67)"), left{}(), format{}("%c#EWOULDBLOCK%r"), injective{}()] - symbol Lbl'Hash'EXDEV{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EXDEV"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2353,22,2353,55)"), left{}(), format{}("%c#EXDEV%r"), injective{}()] + symbol Lbl'Hash'E2BIG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#E2BIG"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2317,22,2317,55)"), left{}(), format{}("%c#E2BIG%r"), injective{}()] + symbol Lbl'Hash'EACCES{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EACCES"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2318,22,2318,57)"), left{}(), format{}("%c#EACCES%r"), injective{}()] + symbol Lbl'Hash'EADDRINUSE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EADDRINUSE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2367,22,2367,65)"), left{}(), format{}("%c#EADDRINUSE%r"), injective{}()] + symbol Lbl'Hash'EADDRNOTAVAIL{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EADDRNOTAVAIL"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2368,22,2368,71)"), left{}(), format{}("%c#EADDRNOTAVAIL%r"), injective{}()] + symbol Lbl'Hash'EAFNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EAFNOSUPPORT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2366,22,2366,69)"), left{}(), format{}("%c#EAFNOSUPPORT%r"), injective{}()] + symbol Lbl'Hash'EAGAIN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EAGAIN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2319,22,2319,57)"), left{}(), format{}("%c#EAGAIN%r"), injective{}()] + symbol Lbl'Hash'EALREADY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EALREADY"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2356,22,2356,61)"), left{}(), format{}("%c#EALREADY%r"), injective{}()] + symbol Lbl'Hash'EBADF{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EBADF"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2320,22,2320,55)"), left{}(), format{}("%c#EBADF%r"), injective{}()] + symbol Lbl'Hash'EBUSY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EBUSY"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2321,22,2321,55)"), left{}(), format{}("%c#EBUSY%r"), injective{}()] + symbol Lbl'Hash'ECHILD{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ECHILD"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2322,22,2322,57)"), left{}(), format{}("%c#ECHILD%r"), injective{}()] + symbol Lbl'Hash'ECONNABORTED{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ECONNABORTED"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2372,22,2372,69)"), left{}(), format{}("%c#ECONNABORTED%r"), injective{}()] + symbol Lbl'Hash'ECONNREFUSED{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ECONNREFUSED"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2380,22,2380,69)"), left{}(), format{}("%c#ECONNREFUSED%r"), injective{}()] + symbol Lbl'Hash'ECONNRESET{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ECONNRESET"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2373,22,2373,65)"), left{}(), format{}("%c#ECONNRESET%r"), injective{}()] + symbol Lbl'Hash'EDEADLK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EDEADLK"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2323,22,2323,59)"), left{}(), format{}("%c#EDEADLK%r"), injective{}()] + symbol Lbl'Hash'EDESTADDRREQ{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EDESTADDRREQ"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2358,22,2358,69)"), left{}(), format{}("%c#EDESTADDRREQ%r"), injective{}()] + symbol Lbl'Hash'EDOM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EDOM"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2324,22,2324,53)"), left{}(), format{}("%c#EDOM%r"), injective{}()] + symbol Lbl'Hash'EEXIST{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EEXIST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2325,22,2325,57)"), left{}(), format{}("%c#EEXIST%r"), injective{}()] + symbol Lbl'Hash'EFAULT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EFAULT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2326,22,2326,57)"), left{}(), format{}("%c#EFAULT%r"), injective{}()] + symbol Lbl'Hash'EFBIG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EFBIG"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2327,22,2327,55)"), left{}(), format{}("%c#EFBIG%r"), injective{}()] + symbol Lbl'Hash'EHOSTDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EHOSTDOWN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2381,22,2381,63)"), left{}(), format{}("%c#EHOSTDOWN%r"), injective{}()] + symbol Lbl'Hash'EHOSTUNREACH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EHOSTUNREACH"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2382,22,2382,69)"), left{}(), format{}("%c#EHOSTUNREACH%r"), injective{}()] + symbol Lbl'Hash'EINPROGRESS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EINPROGRESS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2355,22,2355,67)"), left{}(), format{}("%c#EINPROGRESS%r"), injective{}()] + symbol Lbl'Hash'EINTR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EINTR"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2328,22,2328,55)"), left{}(), format{}("%c#EINTR%r"), injective{}()] + symbol Lbl'Hash'EINVAL{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EINVAL"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2329,22,2329,57)"), left{}(), format{}("%c#EINVAL%r"), injective{}()] + symbol Lbl'Hash'EIO{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EIO"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2330,22,2330,51)"), left{}(), format{}("%c#EIO%r"), injective{}()] + symbol Lbl'Hash'EISCONN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EISCONN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2375,22,2375,59)"), left{}(), format{}("%c#EISCONN%r"), injective{}()] + symbol Lbl'Hash'EISDIR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EISDIR"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2331,22,2331,57)"), left{}(), format{}("%c#EISDIR%r"), injective{}()] + symbol Lbl'Hash'ELOOP{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ELOOP"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2383,22,2383,55)"), left{}(), format{}("%c#ELOOP%r"), injective{}()] + symbol Lbl'Hash'EMFILE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EMFILE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2332,22,2332,57)"), left{}(), format{}("%c#EMFILE%r"), injective{}()] + symbol Lbl'Hash'EMLINK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EMLINK"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2333,22,2333,57)"), left{}(), format{}("%c#EMLINK%r"), injective{}()] + symbol Lbl'Hash'EMSGSIZE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EMSGSIZE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2359,22,2359,61)"), left{}(), format{}("%c#EMSGSIZE%r"), injective{}()] + symbol Lbl'Hash'ENAMETOOLONG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENAMETOOLONG"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2334,22,2334,69)"), left{}(), format{}("%c#ENAMETOOLONG%r"), injective{}()] + symbol Lbl'Hash'ENETDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENETDOWN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2369,22,2369,61)"), left{}(), format{}("%c#ENETDOWN%r"), injective{}()] + symbol Lbl'Hash'ENETRESET{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENETRESET"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2371,22,2371,63)"), left{}(), format{}("%c#ENETRESET%r"), injective{}()] + symbol Lbl'Hash'ENETUNREACH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENETUNREACH"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2370,22,2370,67)"), left{}(), format{}("%c#ENETUNREACH%r"), injective{}()] + symbol Lbl'Hash'ENFILE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENFILE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2335,22,2335,57)"), left{}(), format{}("%c#ENFILE%r"), injective{}()] + symbol Lbl'Hash'ENOBUFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOBUFS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2374,22,2374,59)"), left{}(), format{}("%c#ENOBUFS%r"), injective{}()] + symbol Lbl'Hash'ENODEV{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENODEV"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2336,22,2336,57)"), left{}(), format{}("%c#ENODEV%r"), injective{}()] + symbol Lbl'Hash'ENOENT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOENT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2337,22,2337,57)"), left{}(), format{}("%c#ENOENT%r"), injective{}()] + symbol Lbl'Hash'ENOEXEC{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOEXEC"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2338,22,2338,59)"), left{}(), format{}("%c#ENOEXEC%r"), injective{}()] + symbol Lbl'Hash'ENOLCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOLCK"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2339,22,2339,57)"), left{}(), format{}("%c#ENOLCK%r"), injective{}()] + symbol Lbl'Hash'ENOMEM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOMEM"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2340,22,2340,57)"), left{}(), format{}("%c#ENOMEM%r"), injective{}()] + symbol Lbl'Hash'ENOPROTOOPT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOPROTOOPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2361,22,2361,67)"), left{}(), format{}("%c#ENOPROTOOPT%r"), injective{}()] + symbol Lbl'Hash'ENOSPC{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOSPC"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2341,22,2341,57)"), left{}(), format{}("%c#ENOSPC%r"), injective{}()] + symbol Lbl'Hash'ENOSYS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOSYS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2342,22,2342,57)"), left{}(), format{}("%c#ENOSYS%r"), injective{}()] + symbol Lbl'Hash'ENOTCONN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOTCONN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2376,22,2376,61)"), left{}(), format{}("%c#ENOTCONN%r"), injective{}()] + symbol Lbl'Hash'ENOTDIR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOTDIR"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2343,22,2343,59)"), left{}(), format{}("%c#ENOTDIR%r"), injective{}()] + symbol Lbl'Hash'ENOTEMPTY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOTEMPTY"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2344,22,2344,63)"), left{}(), format{}("%c#ENOTEMPTY%r"), injective{}()] + symbol Lbl'Hash'ENOTSOCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOTSOCK"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2357,22,2357,61)"), left{}(), format{}("%c#ENOTSOCK%r"), injective{}()] + symbol Lbl'Hash'ENOTTY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOTTY"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2345,22,2345,57)"), left{}(), format{}("%c#ENOTTY%r"), injective{}()] + symbol Lbl'Hash'ENXIO{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENXIO"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2346,22,2346,55)"), left{}(), format{}("%c#ENXIO%r"), injective{}()] + symbol Lbl'Hash'EOF{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EOF"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2316,22,2316,51)"), left{}(), format{}("%c#EOF%r"), injective{}()] + symbol Lbl'Hash'EOPNOTSUPP{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EOPNOTSUPP"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2364,22,2364,65)"), left{}(), format{}("%c#EOPNOTSUPP%r"), injective{}()] + symbol Lbl'Hash'EOVERFLOW{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EOVERFLOW"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2384,22,2384,63)"), left{}(), format{}("%c#EOVERFLOW%r"), injective{}()] + symbol Lbl'Hash'EPERM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EPERM"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2347,22,2347,55)"), left{}(), format{}("%c#EPERM%r"), injective{}()] + symbol Lbl'Hash'EPFNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EPFNOSUPPORT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2365,22,2365,69)"), left{}(), format{}("%c#EPFNOSUPPORT%r"), injective{}()] + symbol Lbl'Hash'EPIPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EPIPE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2348,22,2348,55)"), left{}(), format{}("%c#EPIPE%r"), injective{}()] + symbol Lbl'Hash'EPROTONOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EPROTONOSUPPORT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2362,22,2362,75)"), left{}(), format{}("%c#EPROTONOSUPPORT%r"), injective{}()] + symbol Lbl'Hash'EPROTOTYPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EPROTOTYPE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2360,22,2360,65)"), left{}(), format{}("%c#EPROTOTYPE%r"), injective{}()] + symbol Lbl'Hash'ERANGE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ERANGE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2349,22,2349,57)"), left{}(), format{}("%c#ERANGE%r"), injective{}()] + symbol Lbl'Hash'EROFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EROFS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2350,22,2350,55)"), left{}(), format{}("%c#EROFS%r"), injective{}()] + symbol Lbl'Hash'ESHUTDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ESHUTDOWN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2377,22,2377,63)"), left{}(), format{}("%c#ESHUTDOWN%r"), injective{}()] + symbol Lbl'Hash'ESOCKTNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ESOCKTNOSUPPORT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2363,22,2363,75)"), left{}(), format{}("%c#ESOCKTNOSUPPORT%r"), injective{}()] + symbol Lbl'Hash'ESPIPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ESPIPE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2351,22,2351,57)"), left{}(), format{}("%c#ESPIPE%r"), injective{}()] + symbol Lbl'Hash'ESRCH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ESRCH"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2352,22,2352,55)"), left{}(), format{}("%c#ESRCH%r"), injective{}()] + symbol Lbl'Hash'ETIMEDOUT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ETIMEDOUT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2379,22,2379,63)"), left{}(), format{}("%c#ETIMEDOUT%r"), injective{}()] + symbol Lbl'Hash'ETOOMANYREFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ETOOMANYREFS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2378,22,2378,69)"), left{}(), format{}("%c#ETOOMANYREFS%r"), injective{}()] + symbol Lbl'Hash'EWOULDBLOCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EWOULDBLOCK"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2354,22,2354,67)"), left{}(), format{}("%c#EWOULDBLOCK%r"), injective{}()] + symbol Lbl'Hash'EXDEV{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EXDEV"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2353,22,2353,55)"), left{}(), format{}("%c#EXDEV%r"), injective{}()] hooked-symbol Lbl'Hash'accept'LParUndsRParUnds'K-IO'Unds'IOInt'Unds'Int{}(SortInt{}) : SortIOInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.accept"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2482,20,2482,81)"), left{}(), format{}("%c#accept%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbl'Hash'argv'LParRParUnds'K-REFLECTION'Unds'List{}() : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("111"), klabel{}("#argv"), hook{}("KREFLECTION.argv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2262,19,2262,61)"), left{}(), format{}("%c#argv%r %c(%r %c)%r"), function{}()] symbol Lbl'Hash'buffer'LParUndsRParUnds'K-IO'Unds'Stream'Unds'K{}(SortK{}) : SortStream{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#buffer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2586,21,2586,31)"), left{}(), format{}("%c#buffer%r %c(%r %1 %c)%r"), injective{}()] @@ -220,10 +220,10 @@ module IMP symbol Lbl'Hash'istream'LParUndsRParUnds'K-IO'Unds'Stream'Unds'Int{}(SortInt{}) : SortStream{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#istream"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2587,21,2587,34)"), left{}(), format{}("%c#istream%r %c(%r %1 %c)%r"), injective{}()] hooked-symbol Lbl'Hash'kompiledDirectory'LParRParUnds'K-REFLECTION'Unds'String{}() : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("111"), klabel{}("#kompiledDirectory"), hook{}("KREFLECTION.kompiledDir"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,21,2258,83)"), left{}(), format{}("%c#kompiledDirectory%r %c(%r %c)%r"), function{}()] hooked-symbol Lbl'Hash'lock'LParUndsCommUndsRParUnds'K-IO'Unds'K'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), impure{}(), hook{}("IO.lock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2468,16,2468,91)"), left{}(), format{}("%c#lock%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Hash'log{}(SortString{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), returnsUnit{}(), symbol'Kywd'{}(), priorities{}(), funtional{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("#log"), hook{}("IO.logString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2562,16,2562,106)"), left{}(), format{}("%c#log%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'Hash'logToFile{}(SortString{}, SortString{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), impure{}(), klabel{}("#logToFile"), hook{}("IO.log"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2553,16,2553,116)"), left{}(), format{}("%c#logToFile%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] + hooked-symbol Lbl'Hash'log{}(SortString{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), returnsUnit{}(), symbol'Kywd'{}("#log"), priorities{}(), funtional{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.logString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2562,16,2562,106)"), left{}(), format{}("%c#log%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol Lbl'Hash'logToFile{}(SortString{}, SortString{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}("#logToFile"), priorities{}(), right{}(), terminals{}("110101"), impure{}(), hook{}("IO.log"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2553,16,2553,116)"), left{}(), format{}("%c#logToFile%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lbl'Hash'mkstemp'LParUndsRParUnds'K-IO'Unds'IOFile'Unds'String{}(SortString{}) : SortIOFile{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("#mkstemp"), hook{}("IO.mkstemp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2530,21,2530,84)"), left{}(), format{}("%c#mkstemp%r %c(%r %1 %c)%r"), function{}()] - symbol Lbl'Hash'noParse{}(SortString{}) : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#noParse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2267,22,2267,74)"), left{}(), format{}("%c#noParse%r %c(%r %1 %c)%r"), injective{}()] + symbol Lbl'Hash'noParse{}(SortString{}) : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#noParse"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2267,22,2267,74)"), left{}(), format{}("%c#noParse%r %c(%r %1 %c)%r"), injective{}()] symbol Lbl'Hash'open'LParUndsRParUnds'K-IO'Unds'IOInt'Unds'String{}(SortString{}) : SortIOInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2407,20,2407,59)"), left{}(), format{}("%c#open%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbl'Hash'open'LParUndsCommUndsRParUnds'K-IO'Unds'IOInt'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortIOInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), impure{}(), hook{}("IO.open"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2408,18,2408,97)"), left{}(), format{}("%c#open%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol Lbl'Hash'ostream'LParUndsRParUnds'K-IO'Unds'Stream'Unds'Int{}(SortInt{}) : SortStream{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#ostream"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2589,21,2589,34)"), left{}(), format{}("%c#ostream%r %c(%r %1 %c)%r"), injective{}()] @@ -240,26 +240,26 @@ module IMP symbol Lbl'Hash'stdin'Unds'K-IO'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2501,18,2501,46)"), left{}(), format{}("%c#stdin%r"), function{}()] symbol Lbl'Hash'stdout'Unds'K-IO'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2502,19,2502,46)"), left{}(), format{}("%c#stdout%r"), function{}()] hooked-symbol Lbl'Hash'system'LParUndsRParUnds'K-IO'Unds'KItem'Unds'String{}(SortString{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("#system"), hook{}("IO.system"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2519,20,2519,74)"), left{}(), format{}("%c#system%r %c(%r %1 %c)%r"), function{}()] - symbol Lbl'Hash'systemResult{}(SortInt{}, SortString{}, SortString{}) : SortKItem{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("#systemResult"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2520,20,2520,143)"), left{}(), format{}("%c#systemResult%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lbl'Hash'systemResult{}(SortInt{}, SortString{}, SortString{}) : SortKItem{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#systemResult"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2520,20,2520,143)"), left{}(), format{}("%c#systemResult%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] hooked-symbol Lbl'Hash'tell'LParUndsRParUnds'K-IO'Unds'IOInt'Unds'Int{}(SortInt{}) : SortIOInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.tell"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2422,20,2422,77)"), left{}(), format{}("%c#tell%r %c(%r %1 %c)%r"), function{}()] - symbol Lbl'Hash'tempFile{}(SortString{}, SortInt{}) : SortIOFile{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("#tempFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2532,21,2532,93)"), left{}(), format{}("%c#tempFile%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lbl'Hash'tempFile{}(SortString{}, SortInt{}) : SortIOFile{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#tempFile"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2532,21,2532,93)"), left{}(), format{}("%c#tempFile%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] hooked-symbol Lbl'Hash'time'LParRParUnds'K-IO'Unds'Int{}() : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("111"), impure{}(), hook{}("IO.time"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2492,18,2492,67)"), left{}(), format{}("%c#time%r %c(%r %c)%r"), function{}()] - hooked-symbol Lbl'Hash'trace{}(SortKItem{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("#trace"), hook{}("IO.traceTerm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2573,16,2573,103)"), left{}(), format{}("%c#trace%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'Hash'traceK{}(SortK{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("#traceK"), hook{}("IO.traceTerm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2574,16,2574,103)"), left{}(), format{}("%c#traceK%r %c(%r %1 %c)%r"), function{}()] - symbol Lbl'Hash'unknownIOError{}(SortInt{}) : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#unknownIOError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2316,54,2316,90)"), left{}(), format{}("%c#unknownIOError%r %c(%r %1 %c)%r"), injective{}()] + hooked-symbol Lbl'Hash'trace{}(SortKItem{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}("#trace"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.traceTerm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2573,16,2573,103)"), left{}(), format{}("%c#trace%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol Lbl'Hash'traceK{}(SortK{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}("#traceK"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.traceTerm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2574,16,2574,103)"), left{}(), format{}("%c#traceK%r %c(%r %1 %c)%r"), function{}()] + symbol Lbl'Hash'unknownIOError{}(SortInt{}) : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#unknownIOError"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2316,54,2316,90)"), left{}(), format{}("%c#unknownIOError%r %c(%r %1 %c)%r"), injective{}()] hooked-symbol Lbl'Hash'unlock'LParUndsCommUndsRParUnds'K-IO'Unds'K'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), impure{}(), hook{}("IO.unlock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2469,16,2469,95)"), left{}(), format{}("%c#unlock%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lbl'Hash'unparseKORE'LParUndsRParUnds'K-REFLECTION'Unds'String'Unds'Sort{SortSort}(SortSort) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#unparseKORE"), hook{}("KREFLECTION.printKORE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2266,28,2266,86)"), left{}(), format{}("%c#unparseKORE%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbl'Hash'write'LParUndsCommUndsRParUnds'K-IO'Unds'K'Unds'Int'Unds'String{}(SortInt{}, SortString{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), impure{}(), hook{}("IO.write"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2448,16,2448,93)"), left{}(), format{}("%c#write%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol Lbl'PlusPlusUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'Id{}(SortId{}) : SortAExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(Lbl'UndsSlshUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'AExp'Unds'AExp{}(),Lblspawn'UndsUnds'IMP-SYNTAX'Unds'AExp'Unds'Block{}(),Lbl'UndsPlusUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'AExp'Unds'AExp{}(),Lbl'UndsEqlsUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'Id'Unds'AExp{}()), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4,20,4,27)"), left{}(), format{}("%c++%r %1"), injective{}()] symbol Lbl-'UndsUnds'IMP-SYNTAX'Unds'AExp'Unds'Int{}(SortInt{}) : SortAExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(Lbl'UndsSlshUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'AExp'Unds'AExp{}(),Lblspawn'UndsUnds'IMP-SYNTAX'Unds'AExp'Unds'Block{}(),Lbl'UndsPlusUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'AExp'Unds'AExp{}(),Lbl'UndsEqlsUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'Id'Unds'AExp{}()), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6,20,6,27)"), left{}(), format{}("%c-%r %1"), injective{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(747,19,747,142)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(747,19,747,142)"), left{}(), format{}("%c.List%r"), function{}()] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'IMP-SYNTAX'Unds'AExps'Unds'AExp'Unds'AExps'QuotRBraUnds'AExps{}() : SortAExps{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"exps\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,20,31,69)"), left{}(), format{}("%c.AExps%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'IMP-SYNTAX'Unds'Bottoms'Unds'Bottom'Unds'Bottoms'QuotRBraUnds'Bottoms{}() : SortBottoms{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"exps\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,22,36,61)"), left{}(), format{}("%c.Bottoms%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'IMP-SYNTAX'Unds'Ids'Unds'Id'Unds'Ids'QuotRBraUnds'Ids{}() : SortIds{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"exps\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,69)"), left{}(), format{}("%c.Ids%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'IMP-SYNTAX'Unds'Printables'Unds'Printable'Unds'Printables'QuotRBraUnds'Printables{}() : SortPrintables{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"exps\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,61)"), left{}(), format{}("%c.Printables%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'IMP-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts'QuotRBraUnds'Stmts{}() : SortStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"___IMP-SYNTAX\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,20,38,33)"), left{}(), format{}("%c.Stmts%r"), injective{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), left{}(), format{}("%c.Map%r"), function{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,118)"), left{}(), format{}("%c.Set%r"), function{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), left{}(), format{}("%c.Map%r"), function{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,118)"), left{}(), format{}("%c.Set%r"), function{}()] hooked-symbol Lbl'Stop'ThreadCellMap{}() : SortThreadCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.ThreadCellMap%r"), function{}()] symbol Lbl'-LT-'T'-GT-'{}(SortThreadsCell{}, SortStoreCell{}, SortInputCell{}, SortOutputCell{}) : SortTCell{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), color{}("yellow"), cellName{}("T"), priorities{}(), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), right{}(), terminals{}("100001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,17,58,21)"), left{}(), format{}("%c%r%i%n%1%n%2%n%3%n%4%d%n%c%r"), colors{}("yellow,yellow"), injective{}(), cell{}(), topcell{}()] symbol Lbl'-LT-'T'-GT-'-fragment{}(SortThreadsCellOpt{}, SortStoreCellOpt{}, SortInputCellOpt{}, SortOutputCellOpt{}) : SortTCellFragment{} [functional{}(), constructor{}(), cellFragment{}("TCell"), priorities{}(), right{}(), terminals{}("100001"), left{}(), format{}("%c-fragment%r %1 %2 %3 %4 %c-fragment%r"), injective{}()] @@ -282,14 +282,14 @@ module IMP hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("FloatFormat"), hook{}("STRING.floatFormat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1611,21,1611,122)"), left{}(), format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblId2String'LParUndsRParUnds'ID-COMMON'Unds'String'Unds'Id{}(SortId{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Id2String"), hook{}("STRING.token2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2142,21,2142,85)"), left{}(), format{}("%cId2String%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Int2String"), hook{}("STRING.int2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1632,21,1632,99)"), left{}(), format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(766,20,766,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(813,19,813,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(755,19,755,132)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,142)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,119)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(766,20,766,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(813,19,813,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(755,19,755,132)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,142)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,119)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] hooked-symbol LblString2Base'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'Int{}(SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("String2Base"), hook{}("STRING.string2base"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1634,21,1634,99)"), left{}(), format{}("%cString2Base%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblString2Bool'LParUndsRParUnds'STRING-COMMON'Unds'Bool'Unds'String{}(SortString{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1589,19,1589,49)"), left{}(), format{}("%cString2Bool%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Float'LParUndsRParUnds'STRING-COMMON'Unds'Float'Unds'String{}(SortString{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Float"), hook{}("STRING.string2float"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1612,21,1612,94)"), left{}(), format{}("%cString2Float%r %c(%r %1 %c)%r"), function{}()] @@ -298,68 +298,68 @@ module IMP hooked-symbol LblThreadCellMap'Coln'in'Unds'keys{}(SortIdCell{}, SortThreadCellMap{}) : SortBool{} [functional{}(), total{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblThreadCellMapItem{}(SortIdCell{}, SortThreadCell{}) : SortThreadCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] symbol LblThreadCellMapKey{}(SortThreadCell{}) : SortIdCell{} [functional{}(), total{}(), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cThreadCellMapKey%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_%Int_"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,18,1047,171)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_%Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,18,1047,171)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] symbol Lbl'UndsAnd-And-UndsUnds'IMP-SYNTAX'Unds'BExp'Unds'BExp'Unds'BExp{}(SortBExp{}, SortBExp{}) : SortBExp{} [functional{}(), constructor{}(), strict{}("1"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(16,20,16,64)"), left{}(Lbl'UndsAnd-And-UndsUnds'IMP-SYNTAX'Unds'BExp'Unds'BExp'Unds'BExp{}()), format{}("%1 %c&&%r %2"), injective{}()] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), klabel{}("_&Int_"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1058,18,1058,184)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), klabel{}("_*Int_"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1043,18,1043,183)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), klabel{}("_+Int_"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1052,18,1052,180)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_&Int_"), comm{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1058,18,1058,184)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_*Int_"), comm{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1043,18,1043,183)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_+Int_"), comm{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1052,18,1052,180)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1522,21,1522,135)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), format{}("%1 %c+String%r %2"), function{}()] symbol Lbl'UndsPlusUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'AExp'Unds'AExp{}(SortAExp{}, SortAExp{}) : SortAExp{} [functional{}(), constructor{}(), strict{}(""), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(Lblspawn'UndsUnds'IMP-SYNTAX'Unds'AExp'Unds'Block{}(),Lbl'UndsEqlsUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'Id'Unds'AExp{}()), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9,20,9,61)"), left{}(Lbl'UndsPlusUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'AExp'Unds'AExp{}()), format{}("%1 %c+%r %2"), injective{}()] symbol Lbl'UndsCommUndsUnds'IMP-SYNTAX'Unds'AExps'Unds'AExp'Unds'AExps{}(SortAExp{}, SortAExps{}) : SortAExps{} [functional{}(), userList{}("*"), strict{}(""), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("exps"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,20,31,69)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] symbol Lbl'UndsCommUndsUnds'IMP-SYNTAX'Unds'Bottoms'Unds'Bottom'Unds'Bottoms{}(SortBottom{}, SortBottoms{}) : SortBottoms{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("exps"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,22,36,61)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] symbol Lbl'UndsCommUndsUnds'IMP-SYNTAX'Unds'Ids'Unds'Id'Unds'Ids{}(SortId{}, SortIds{}) : SortIds{} [functional{}(), constructor{}(), userList{}("*"), strict{}(""), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("exps"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,69)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] symbol Lbl'UndsCommUndsUnds'IMP-SYNTAX'Unds'Printables'Unds'Printable'Unds'Printables{}(SortPrintable{}, SortPrintables{}) : SortPrintables{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("exps"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,61)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), klabel{}("_-Int_"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1053,18,1053,174)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_-Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1053,18,1053,174)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_/Int_"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1046,18,1046,173)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_/Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1046,18,1046,173)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] symbol Lbl'UndsSlshUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'AExp'Unds'AExp{}(SortAExp{}, SortAExp{}) : SortAExp{} [functional{}(), constructor{}(), strict{}(""), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(Lblspawn'UndsUnds'IMP-SYNTAX'Unds'AExp'Unds'Block{}(),Lbl'UndsPlusUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'AExp'Unds'AExp{}(),Lbl'UndsEqlsUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'Id'Unds'AExp{}()), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8,20,8,61)"), left{}(Lbl'UndsSlshUndsUnds'IMP-SYNTAX'Unds'AExp'Unds'AExp'Unds'AExp{}()), format{}("%1 %c/%r %2"), injective{}()] symbol Lbl'UndsSClnUnds'IMP-SYNTAX'Unds'Stmt'Unds'AExp{}(SortAExp{}) : SortStmt{} [functional{}(), constructor{}(), strict{}(""), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(Lbljoin'UndsSClnUnds'IMP-SYNTAX'Unds'Stmt'Unds'AExp{}()), right{}(), terminals{}("01"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,20,19,55)"), left{}(), format{}("%1 %c;%r"), injective{}()] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ll_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shlInt"), terminals{}("010"), klabel{}("_<="), right{}(), terminals{}("010"), klabel{}("_>=Int_"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1116,19,1116,172)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_>=Int_"), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1116,19,1116,172)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1669,19,1669,78)"), left{}(), format{}("%1 %c>=String%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), klabel{}("_>>Int_"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1055,18,1055,173)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), klabel{}("_>Int_"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1117,19,1117,167)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>>Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1055,18,1055,173)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_>Int_"), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1117,19,1117,167)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1668,19,1668,78)"), left{}(), format{}("%1 %c>String%r %2"), function{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,19,739,188)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,165)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,19,739,188)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,165)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'ThreadCellMap'Unds'{}(SortThreadCellMap{}, SortThreadCellMap{}) : SortThreadCellMap{} [unit{}(Lbl'Stop'ThreadCellMap{}()), element{}(LblThreadCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(775,19,775,108)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), klabel{}("_^%Int__"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1041,18,1041,139)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), klabel{}("_^Int_"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1040,18,1040,178)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^%Int__"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1041,18,1041,139)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1040,18,1040,178)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] symbol Lbl'UndsUndsUnds'IMP-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts{}(SortStmt{}, SortStmts{}) : SortStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,20,38,33)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andBool_"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(911,19,911,185)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andThenBool_"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(912,19,912,147)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_divInt_"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,18,1049,122)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_andBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(911,19,911,185)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_andThenBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(912,19,912,147)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_divInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,18,1049,122)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1128,19,1128,53)"), left{}(), format{}("%1 %cdividesInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_impliesBool_"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,19,916,146)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_impliesBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,19,916,146)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,97)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_modInt_"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,122)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orBool_"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,19,914,180)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orElseBool_"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(915,19,915,144)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_xorBool_"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(913,19,913,139)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), klabel{}("_xorInt_"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1060,18,1060,190)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), klabel{}("_|Int_"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,18,1062,181)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_modInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,122)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_orBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,19,914,180)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_orElseBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(915,19,915,144)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_xorBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(913,19,913,139)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_xorInt_"), comm{}(), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1060,18,1060,190)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_|Int_"), comm{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,18,1062,181)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), comm{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,18,558,92)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] symbol Lblabort'SClnUnds'IMP-SYNTAX'Unds'Stmt{}() : SortStmt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(Lbljoin'UndsSClnUnds'IMP-SYNTAX'Unds'Stmt'Unds'AExp{}()), right{}(), terminals{}("11"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,20,27,31)"), left{}(), format{}("%cabort%r %c;%r"), injective{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), right{}(), terminals{}("1101"), klabel{}("absInt"), hook{}("INT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1079,18,1079,119)"), left{}(), format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}()] @@ -463,7 +463,7 @@ module IMP symbol LblnoStoreCell{}() : SortStoreCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("StoreCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoStoreCell%r"), injective{}()] symbol LblnoTCell{}() : SortTCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("TCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoTCell%r"), injective{}()] symbol LblnoThreadsCell{}() : SortThreadsCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("ThreadsCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoThreadsCell%r"), injective{}()] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), klabel{}("notBool_"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(910,19,910,172)"), left{}(), format{}("%cnotBool%r %1"), function{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("notBool_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(910,19,910,172)"), left{}(), format{}("%cnotBool%r %1"), function{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("ordChar"), hook{}("STRING.ord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1540,18,1540,70)"), left{}(), format{}("%cordChar%r %c(%r %1 %c)%r"), function{}()] symbol Lblprint'LParUndsRParSClnUnds'IMP-SYNTAX'Unds'Stmt'Unds'AExps{}(SortAExps{}) : SortStmt{} [functional{}(), constructor{}(), strict{}(""), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(Lbljoin'UndsSClnUnds'IMP-SYNTAX'Unds'Stmt'Unds'AExp{}()), right{}(), terminals{}("11011"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,20,24,55)"), left{}(), format{}("%cprint%r %c(%r %1 %c)%r %c;%r"), injective{}()] symbol Lblproject'ColnHash'tempFile'Coln'fd{}(SortIOFile{}) : SortInt{} [priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cfd%r %c(%r %1 %c)%r"), function{}()] @@ -542,7 +542,7 @@ module IMP hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("values"), hook{}("MAP.values"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), left{}(), format{}("%cvalues%r %c(%r %1 %c)%r"), function{}()] symbol Lblwhile'LParUndsRParUndsUnds'IMP-SYNTAX'Unds'Stmt'Unds'BExp'Unds'Block{}(SortBExp{}, SortBlock{}) : SortStmt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(Lbljoin'UndsSClnUnds'IMP-SYNTAX'Unds'Stmt'Unds'AExp{}()), right{}(), terminals{}("11010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,20,22,46)"), left{}(), format{}("%cwhile%r %c(%r %1 %c)%r %2"), injective{}()] symbol Lbl'LBraUndsRBraUnds'IMP-SYNTAX'Unds'Block'Unds'Stmts{}(SortStmts{}) : SortBlock{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-exercises/tutorial/1_k/4_imp++/lesson_7/exercises/non-determinism/imp.k)"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,20,17,33)"), left{}(), format{}("%c{%r %1 %c}%r"), injective{}()] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), klabel{}("~Int_"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1038,18,1038,168)"), left{}(), format{}("%c~Int%r %1"), function{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("~Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1038,18,1038,168)"), left{}(), format{}("%c~Int%r %1"), function{}()] // generated axioms axiom{R} \exists{R} (Val:SortKItem{}, \equals{SortKItem{}, R} (Val:SortKItem{}, inj{SortStoreCellOpt{}, SortKItem{}} (From:SortStoreCellOpt{}))) [subsort{SortStoreCellOpt{}, SortKItem{}}()] // subsort diff --git a/test/issue-3518/definition.kore b/test/issue-3518/definition.kore index 1e15bfe78c..2d9f1cb1cd 100644 --- a/test/issue-3518/definition.kore +++ b/test/issue-3518/definition.kore @@ -101,75 +101,75 @@ module LAMBDA hooked-sort SortBool{} [hook{}("BOOL.Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(878,3,878,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), hasDomainValues{}()] // symbols - symbol Lbl'Hash'E2BIG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#E2BIG"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2317,22,2317,55)"), left{}(), format{}("%c#E2BIG%r"), injective{}()] - symbol Lbl'Hash'EACCES{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EACCES"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2318,22,2318,57)"), left{}(), format{}("%c#EACCES%r"), injective{}()] - symbol Lbl'Hash'EADDRINUSE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EADDRINUSE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2367,22,2367,65)"), left{}(), format{}("%c#EADDRINUSE%r"), injective{}()] - symbol Lbl'Hash'EADDRNOTAVAIL{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EADDRNOTAVAIL"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2368,22,2368,71)"), left{}(), format{}("%c#EADDRNOTAVAIL%r"), injective{}()] - symbol Lbl'Hash'EAFNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EAFNOSUPPORT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2366,22,2366,69)"), left{}(), format{}("%c#EAFNOSUPPORT%r"), injective{}()] - symbol Lbl'Hash'EAGAIN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EAGAIN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2319,22,2319,57)"), left{}(), format{}("%c#EAGAIN%r"), injective{}()] - symbol Lbl'Hash'EALREADY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EALREADY"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2356,22,2356,61)"), left{}(), format{}("%c#EALREADY%r"), injective{}()] - symbol Lbl'Hash'EBADF{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EBADF"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2320,22,2320,55)"), left{}(), format{}("%c#EBADF%r"), injective{}()] - symbol Lbl'Hash'EBUSY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EBUSY"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2321,22,2321,55)"), left{}(), format{}("%c#EBUSY%r"), injective{}()] - symbol Lbl'Hash'ECHILD{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ECHILD"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2322,22,2322,57)"), left{}(), format{}("%c#ECHILD%r"), injective{}()] - symbol Lbl'Hash'ECONNABORTED{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ECONNABORTED"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2372,22,2372,69)"), left{}(), format{}("%c#ECONNABORTED%r"), injective{}()] - symbol Lbl'Hash'ECONNREFUSED{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ECONNREFUSED"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2380,22,2380,69)"), left{}(), format{}("%c#ECONNREFUSED%r"), injective{}()] - symbol Lbl'Hash'ECONNRESET{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ECONNRESET"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2373,22,2373,65)"), left{}(), format{}("%c#ECONNRESET%r"), injective{}()] - symbol Lbl'Hash'EDEADLK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EDEADLK"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2323,22,2323,59)"), left{}(), format{}("%c#EDEADLK%r"), injective{}()] - symbol Lbl'Hash'EDESTADDRREQ{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EDESTADDRREQ"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2358,22,2358,69)"), left{}(), format{}("%c#EDESTADDRREQ%r"), injective{}()] - symbol Lbl'Hash'EDOM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EDOM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2324,22,2324,53)"), left{}(), format{}("%c#EDOM%r"), injective{}()] - symbol Lbl'Hash'EEXIST{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EEXIST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2325,22,2325,57)"), left{}(), format{}("%c#EEXIST%r"), injective{}()] - symbol Lbl'Hash'EFAULT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EFAULT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2326,22,2326,57)"), left{}(), format{}("%c#EFAULT%r"), injective{}()] - symbol Lbl'Hash'EFBIG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EFBIG"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2327,22,2327,55)"), left{}(), format{}("%c#EFBIG%r"), injective{}()] - symbol Lbl'Hash'EHOSTDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EHOSTDOWN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2381,22,2381,63)"), left{}(), format{}("%c#EHOSTDOWN%r"), injective{}()] - symbol Lbl'Hash'EHOSTUNREACH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EHOSTUNREACH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2382,22,2382,69)"), left{}(), format{}("%c#EHOSTUNREACH%r"), injective{}()] - symbol Lbl'Hash'EINPROGRESS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EINPROGRESS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2355,22,2355,67)"), left{}(), format{}("%c#EINPROGRESS%r"), injective{}()] - symbol Lbl'Hash'EINTR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EINTR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2328,22,2328,55)"), left{}(), format{}("%c#EINTR%r"), injective{}()] - symbol Lbl'Hash'EINVAL{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EINVAL"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2329,22,2329,57)"), left{}(), format{}("%c#EINVAL%r"), injective{}()] - symbol Lbl'Hash'EIO{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EIO"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2330,22,2330,51)"), left{}(), format{}("%c#EIO%r"), injective{}()] - symbol Lbl'Hash'EISCONN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EISCONN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2375,22,2375,59)"), left{}(), format{}("%c#EISCONN%r"), injective{}()] - symbol Lbl'Hash'EISDIR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EISDIR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2331,22,2331,57)"), left{}(), format{}("%c#EISDIR%r"), injective{}()] - symbol Lbl'Hash'ELOOP{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ELOOP"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2383,22,2383,55)"), left{}(), format{}("%c#ELOOP%r"), injective{}()] - symbol Lbl'Hash'EMFILE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EMFILE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2332,22,2332,57)"), left{}(), format{}("%c#EMFILE%r"), injective{}()] - symbol Lbl'Hash'EMLINK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EMLINK"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2333,22,2333,57)"), left{}(), format{}("%c#EMLINK%r"), injective{}()] - symbol Lbl'Hash'EMSGSIZE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EMSGSIZE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2359,22,2359,61)"), left{}(), format{}("%c#EMSGSIZE%r"), injective{}()] - symbol Lbl'Hash'ENAMETOOLONG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENAMETOOLONG"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2334,22,2334,69)"), left{}(), format{}("%c#ENAMETOOLONG%r"), injective{}()] - symbol Lbl'Hash'ENETDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENETDOWN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2369,22,2369,61)"), left{}(), format{}("%c#ENETDOWN%r"), injective{}()] - symbol Lbl'Hash'ENETRESET{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENETRESET"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2371,22,2371,63)"), left{}(), format{}("%c#ENETRESET%r"), injective{}()] - symbol Lbl'Hash'ENETUNREACH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENETUNREACH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2370,22,2370,67)"), left{}(), format{}("%c#ENETUNREACH%r"), injective{}()] - symbol Lbl'Hash'ENFILE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENFILE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2335,22,2335,57)"), left{}(), format{}("%c#ENFILE%r"), injective{}()] - symbol Lbl'Hash'ENOBUFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOBUFS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2374,22,2374,59)"), left{}(), format{}("%c#ENOBUFS%r"), injective{}()] - symbol Lbl'Hash'ENODEV{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENODEV"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2336,22,2336,57)"), left{}(), format{}("%c#ENODEV%r"), injective{}()] - symbol Lbl'Hash'ENOENT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOENT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2337,22,2337,57)"), left{}(), format{}("%c#ENOENT%r"), injective{}()] - symbol Lbl'Hash'ENOEXEC{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOEXEC"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2338,22,2338,59)"), left{}(), format{}("%c#ENOEXEC%r"), injective{}()] - symbol Lbl'Hash'ENOLCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOLCK"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2339,22,2339,57)"), left{}(), format{}("%c#ENOLCK%r"), injective{}()] - symbol Lbl'Hash'ENOMEM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOMEM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2340,22,2340,57)"), left{}(), format{}("%c#ENOMEM%r"), injective{}()] - symbol Lbl'Hash'ENOPROTOOPT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOPROTOOPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2361,22,2361,67)"), left{}(), format{}("%c#ENOPROTOOPT%r"), injective{}()] - symbol Lbl'Hash'ENOSPC{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOSPC"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2341,22,2341,57)"), left{}(), format{}("%c#ENOSPC%r"), injective{}()] - symbol Lbl'Hash'ENOSYS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOSYS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2342,22,2342,57)"), left{}(), format{}("%c#ENOSYS%r"), injective{}()] - symbol Lbl'Hash'ENOTCONN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOTCONN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2376,22,2376,61)"), left{}(), format{}("%c#ENOTCONN%r"), injective{}()] - symbol Lbl'Hash'ENOTDIR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOTDIR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2343,22,2343,59)"), left{}(), format{}("%c#ENOTDIR%r"), injective{}()] - symbol Lbl'Hash'ENOTEMPTY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOTEMPTY"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2344,22,2344,63)"), left{}(), format{}("%c#ENOTEMPTY%r"), injective{}()] - symbol Lbl'Hash'ENOTSOCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOTSOCK"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2357,22,2357,61)"), left{}(), format{}("%c#ENOTSOCK%r"), injective{}()] - symbol Lbl'Hash'ENOTTY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENOTTY"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2345,22,2345,57)"), left{}(), format{}("%c#ENOTTY%r"), injective{}()] - symbol Lbl'Hash'ENXIO{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ENXIO"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2346,22,2346,55)"), left{}(), format{}("%c#ENXIO%r"), injective{}()] - symbol Lbl'Hash'EOF{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EOF"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2316,22,2316,51)"), left{}(), format{}("%c#EOF%r"), injective{}()] - symbol Lbl'Hash'EOPNOTSUPP{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EOPNOTSUPP"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2364,22,2364,65)"), left{}(), format{}("%c#EOPNOTSUPP%r"), injective{}()] - symbol Lbl'Hash'EOVERFLOW{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EOVERFLOW"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2384,22,2384,63)"), left{}(), format{}("%c#EOVERFLOW%r"), injective{}()] - symbol Lbl'Hash'EPERM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EPERM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2347,22,2347,55)"), left{}(), format{}("%c#EPERM%r"), injective{}()] - symbol Lbl'Hash'EPFNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EPFNOSUPPORT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2365,22,2365,69)"), left{}(), format{}("%c#EPFNOSUPPORT%r"), injective{}()] - symbol Lbl'Hash'EPIPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EPIPE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2348,22,2348,55)"), left{}(), format{}("%c#EPIPE%r"), injective{}()] - symbol Lbl'Hash'EPROTONOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EPROTONOSUPPORT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2362,22,2362,75)"), left{}(), format{}("%c#EPROTONOSUPPORT%r"), injective{}()] - symbol Lbl'Hash'EPROTOTYPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EPROTOTYPE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2360,22,2360,65)"), left{}(), format{}("%c#EPROTOTYPE%r"), injective{}()] - symbol Lbl'Hash'ERANGE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ERANGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2349,22,2349,57)"), left{}(), format{}("%c#ERANGE%r"), injective{}()] - symbol Lbl'Hash'EROFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EROFS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2350,22,2350,55)"), left{}(), format{}("%c#EROFS%r"), injective{}()] - symbol Lbl'Hash'ESHUTDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ESHUTDOWN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2377,22,2377,63)"), left{}(), format{}("%c#ESHUTDOWN%r"), injective{}()] - symbol Lbl'Hash'ESOCKTNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ESOCKTNOSUPPORT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2363,22,2363,75)"), left{}(), format{}("%c#ESOCKTNOSUPPORT%r"), injective{}()] - symbol Lbl'Hash'ESPIPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ESPIPE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2351,22,2351,57)"), left{}(), format{}("%c#ESPIPE%r"), injective{}()] - symbol Lbl'Hash'ESRCH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ESRCH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2352,22,2352,55)"), left{}(), format{}("%c#ESRCH%r"), injective{}()] - symbol Lbl'Hash'ETIMEDOUT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ETIMEDOUT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2379,22,2379,63)"), left{}(), format{}("%c#ETIMEDOUT%r"), injective{}()] - symbol Lbl'Hash'ETOOMANYREFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#ETOOMANYREFS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2378,22,2378,69)"), left{}(), format{}("%c#ETOOMANYREFS%r"), injective{}()] - symbol Lbl'Hash'EWOULDBLOCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EWOULDBLOCK"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2354,22,2354,67)"), left{}(), format{}("%c#EWOULDBLOCK%r"), injective{}()] - symbol Lbl'Hash'EXDEV{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("#EXDEV"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2353,22,2353,55)"), left{}(), format{}("%c#EXDEV%r"), injective{}()] + symbol Lbl'Hash'E2BIG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#E2BIG"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2317,22,2317,55)"), left{}(), format{}("%c#E2BIG%r"), injective{}()] + symbol Lbl'Hash'EACCES{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EACCES"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2318,22,2318,57)"), left{}(), format{}("%c#EACCES%r"), injective{}()] + symbol Lbl'Hash'EADDRINUSE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EADDRINUSE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2367,22,2367,65)"), left{}(), format{}("%c#EADDRINUSE%r"), injective{}()] + symbol Lbl'Hash'EADDRNOTAVAIL{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EADDRNOTAVAIL"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2368,22,2368,71)"), left{}(), format{}("%c#EADDRNOTAVAIL%r"), injective{}()] + symbol Lbl'Hash'EAFNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EAFNOSUPPORT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2366,22,2366,69)"), left{}(), format{}("%c#EAFNOSUPPORT%r"), injective{}()] + symbol Lbl'Hash'EAGAIN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EAGAIN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2319,22,2319,57)"), left{}(), format{}("%c#EAGAIN%r"), injective{}()] + symbol Lbl'Hash'EALREADY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EALREADY"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2356,22,2356,61)"), left{}(), format{}("%c#EALREADY%r"), injective{}()] + symbol Lbl'Hash'EBADF{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EBADF"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2320,22,2320,55)"), left{}(), format{}("%c#EBADF%r"), injective{}()] + symbol Lbl'Hash'EBUSY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EBUSY"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2321,22,2321,55)"), left{}(), format{}("%c#EBUSY%r"), injective{}()] + symbol Lbl'Hash'ECHILD{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ECHILD"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2322,22,2322,57)"), left{}(), format{}("%c#ECHILD%r"), injective{}()] + symbol Lbl'Hash'ECONNABORTED{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ECONNABORTED"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2372,22,2372,69)"), left{}(), format{}("%c#ECONNABORTED%r"), injective{}()] + symbol Lbl'Hash'ECONNREFUSED{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ECONNREFUSED"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2380,22,2380,69)"), left{}(), format{}("%c#ECONNREFUSED%r"), injective{}()] + symbol Lbl'Hash'ECONNRESET{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ECONNRESET"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2373,22,2373,65)"), left{}(), format{}("%c#ECONNRESET%r"), injective{}()] + symbol Lbl'Hash'EDEADLK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EDEADLK"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2323,22,2323,59)"), left{}(), format{}("%c#EDEADLK%r"), injective{}()] + symbol Lbl'Hash'EDESTADDRREQ{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EDESTADDRREQ"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2358,22,2358,69)"), left{}(), format{}("%c#EDESTADDRREQ%r"), injective{}()] + symbol Lbl'Hash'EDOM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EDOM"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2324,22,2324,53)"), left{}(), format{}("%c#EDOM%r"), injective{}()] + symbol Lbl'Hash'EEXIST{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EEXIST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2325,22,2325,57)"), left{}(), format{}("%c#EEXIST%r"), injective{}()] + symbol Lbl'Hash'EFAULT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EFAULT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2326,22,2326,57)"), left{}(), format{}("%c#EFAULT%r"), injective{}()] + symbol Lbl'Hash'EFBIG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EFBIG"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2327,22,2327,55)"), left{}(), format{}("%c#EFBIG%r"), injective{}()] + symbol Lbl'Hash'EHOSTDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EHOSTDOWN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2381,22,2381,63)"), left{}(), format{}("%c#EHOSTDOWN%r"), injective{}()] + symbol Lbl'Hash'EHOSTUNREACH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EHOSTUNREACH"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2382,22,2382,69)"), left{}(), format{}("%c#EHOSTUNREACH%r"), injective{}()] + symbol Lbl'Hash'EINPROGRESS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EINPROGRESS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2355,22,2355,67)"), left{}(), format{}("%c#EINPROGRESS%r"), injective{}()] + symbol Lbl'Hash'EINTR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EINTR"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2328,22,2328,55)"), left{}(), format{}("%c#EINTR%r"), injective{}()] + symbol Lbl'Hash'EINVAL{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EINVAL"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2329,22,2329,57)"), left{}(), format{}("%c#EINVAL%r"), injective{}()] + symbol Lbl'Hash'EIO{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EIO"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2330,22,2330,51)"), left{}(), format{}("%c#EIO%r"), injective{}()] + symbol Lbl'Hash'EISCONN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EISCONN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2375,22,2375,59)"), left{}(), format{}("%c#EISCONN%r"), injective{}()] + symbol Lbl'Hash'EISDIR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EISDIR"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2331,22,2331,57)"), left{}(), format{}("%c#EISDIR%r"), injective{}()] + symbol Lbl'Hash'ELOOP{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ELOOP"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2383,22,2383,55)"), left{}(), format{}("%c#ELOOP%r"), injective{}()] + symbol Lbl'Hash'EMFILE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EMFILE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2332,22,2332,57)"), left{}(), format{}("%c#EMFILE%r"), injective{}()] + symbol Lbl'Hash'EMLINK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EMLINK"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2333,22,2333,57)"), left{}(), format{}("%c#EMLINK%r"), injective{}()] + symbol Lbl'Hash'EMSGSIZE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EMSGSIZE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2359,22,2359,61)"), left{}(), format{}("%c#EMSGSIZE%r"), injective{}()] + symbol Lbl'Hash'ENAMETOOLONG{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENAMETOOLONG"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2334,22,2334,69)"), left{}(), format{}("%c#ENAMETOOLONG%r"), injective{}()] + symbol Lbl'Hash'ENETDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENETDOWN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2369,22,2369,61)"), left{}(), format{}("%c#ENETDOWN%r"), injective{}()] + symbol Lbl'Hash'ENETRESET{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENETRESET"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2371,22,2371,63)"), left{}(), format{}("%c#ENETRESET%r"), injective{}()] + symbol Lbl'Hash'ENETUNREACH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENETUNREACH"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2370,22,2370,67)"), left{}(), format{}("%c#ENETUNREACH%r"), injective{}()] + symbol Lbl'Hash'ENFILE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENFILE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2335,22,2335,57)"), left{}(), format{}("%c#ENFILE%r"), injective{}()] + symbol Lbl'Hash'ENOBUFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOBUFS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2374,22,2374,59)"), left{}(), format{}("%c#ENOBUFS%r"), injective{}()] + symbol Lbl'Hash'ENODEV{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENODEV"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2336,22,2336,57)"), left{}(), format{}("%c#ENODEV%r"), injective{}()] + symbol Lbl'Hash'ENOENT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOENT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2337,22,2337,57)"), left{}(), format{}("%c#ENOENT%r"), injective{}()] + symbol Lbl'Hash'ENOEXEC{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOEXEC"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2338,22,2338,59)"), left{}(), format{}("%c#ENOEXEC%r"), injective{}()] + symbol Lbl'Hash'ENOLCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOLCK"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2339,22,2339,57)"), left{}(), format{}("%c#ENOLCK%r"), injective{}()] + symbol Lbl'Hash'ENOMEM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOMEM"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2340,22,2340,57)"), left{}(), format{}("%c#ENOMEM%r"), injective{}()] + symbol Lbl'Hash'ENOPROTOOPT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOPROTOOPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2361,22,2361,67)"), left{}(), format{}("%c#ENOPROTOOPT%r"), injective{}()] + symbol Lbl'Hash'ENOSPC{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOSPC"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2341,22,2341,57)"), left{}(), format{}("%c#ENOSPC%r"), injective{}()] + symbol Lbl'Hash'ENOSYS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOSYS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2342,22,2342,57)"), left{}(), format{}("%c#ENOSYS%r"), injective{}()] + symbol Lbl'Hash'ENOTCONN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOTCONN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2376,22,2376,61)"), left{}(), format{}("%c#ENOTCONN%r"), injective{}()] + symbol Lbl'Hash'ENOTDIR{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOTDIR"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2343,22,2343,59)"), left{}(), format{}("%c#ENOTDIR%r"), injective{}()] + symbol Lbl'Hash'ENOTEMPTY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOTEMPTY"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2344,22,2344,63)"), left{}(), format{}("%c#ENOTEMPTY%r"), injective{}()] + symbol Lbl'Hash'ENOTSOCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOTSOCK"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2357,22,2357,61)"), left{}(), format{}("%c#ENOTSOCK%r"), injective{}()] + symbol Lbl'Hash'ENOTTY{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENOTTY"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2345,22,2345,57)"), left{}(), format{}("%c#ENOTTY%r"), injective{}()] + symbol Lbl'Hash'ENXIO{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ENXIO"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2346,22,2346,55)"), left{}(), format{}("%c#ENXIO%r"), injective{}()] + symbol Lbl'Hash'EOF{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EOF"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2316,22,2316,51)"), left{}(), format{}("%c#EOF%r"), injective{}()] + symbol Lbl'Hash'EOPNOTSUPP{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EOPNOTSUPP"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2364,22,2364,65)"), left{}(), format{}("%c#EOPNOTSUPP%r"), injective{}()] + symbol Lbl'Hash'EOVERFLOW{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EOVERFLOW"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2384,22,2384,63)"), left{}(), format{}("%c#EOVERFLOW%r"), injective{}()] + symbol Lbl'Hash'EPERM{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EPERM"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2347,22,2347,55)"), left{}(), format{}("%c#EPERM%r"), injective{}()] + symbol Lbl'Hash'EPFNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EPFNOSUPPORT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2365,22,2365,69)"), left{}(), format{}("%c#EPFNOSUPPORT%r"), injective{}()] + symbol Lbl'Hash'EPIPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EPIPE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2348,22,2348,55)"), left{}(), format{}("%c#EPIPE%r"), injective{}()] + symbol Lbl'Hash'EPROTONOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EPROTONOSUPPORT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2362,22,2362,75)"), left{}(), format{}("%c#EPROTONOSUPPORT%r"), injective{}()] + symbol Lbl'Hash'EPROTOTYPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EPROTOTYPE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2360,22,2360,65)"), left{}(), format{}("%c#EPROTOTYPE%r"), injective{}()] + symbol Lbl'Hash'ERANGE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ERANGE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2349,22,2349,57)"), left{}(), format{}("%c#ERANGE%r"), injective{}()] + symbol Lbl'Hash'EROFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EROFS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2350,22,2350,55)"), left{}(), format{}("%c#EROFS%r"), injective{}()] + symbol Lbl'Hash'ESHUTDOWN{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ESHUTDOWN"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2377,22,2377,63)"), left{}(), format{}("%c#ESHUTDOWN%r"), injective{}()] + symbol Lbl'Hash'ESOCKTNOSUPPORT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ESOCKTNOSUPPORT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2363,22,2363,75)"), left{}(), format{}("%c#ESOCKTNOSUPPORT%r"), injective{}()] + symbol Lbl'Hash'ESPIPE{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ESPIPE"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2351,22,2351,57)"), left{}(), format{}("%c#ESPIPE%r"), injective{}()] + symbol Lbl'Hash'ESRCH{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ESRCH"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2352,22,2352,55)"), left{}(), format{}("%c#ESRCH%r"), injective{}()] + symbol Lbl'Hash'ETIMEDOUT{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ETIMEDOUT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2379,22,2379,63)"), left{}(), format{}("%c#ETIMEDOUT%r"), injective{}()] + symbol Lbl'Hash'ETOOMANYREFS{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#ETOOMANYREFS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2378,22,2378,69)"), left{}(), format{}("%c#ETOOMANYREFS%r"), injective{}()] + symbol Lbl'Hash'EWOULDBLOCK{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EWOULDBLOCK"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2354,22,2354,67)"), left{}(), format{}("%c#EWOULDBLOCK%r"), injective{}()] + symbol Lbl'Hash'EXDEV{}() : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#EXDEV"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2353,22,2353,55)"), left{}(), format{}("%c#EXDEV%r"), injective{}()] hooked-symbol Lbl'Hash'accept'LParUndsRParUnds'K-IO'Unds'IOInt'Unds'Int{}(SortInt{}) : SortIOInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.accept"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2482,20,2482,81)"), left{}(), format{}("%c#accept%r %c(%r %1 %c)%r"), function{}()] symbol Lbl'Hash'buffer'LParUndsRParUnds'K-IO'Unds'Stream'Unds'K{}(SortK{}) : SortStream{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#buffer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2586,21,2586,31)"), left{}(), format{}("%c#buffer%r %c(%r %1 %c)%r"), injective{}()] hooked-symbol Lbl'Hash'close'LParUndsRParUnds'K-IO'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.close"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2456,16,2456,75)"), left{}(), format{}("%c#close%r %c(%r %1 %c)%r"), function{}()] @@ -179,8 +179,8 @@ module LAMBDA hooked-symbol Lbl'Hash'if'UndsHash'then'UndsHash'else'UndsHash'fi'Unds'K-EQUAL-SYNTAX'Unds'Sort'Unds'Bool'Unds'Sort'Unds'Sort{SortSort}(SortBool{}, SortSort, SortSort) : SortSort [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), smt-hook{}("ite"), right{}(), terminals{}("1010101"), hook{}("KEQUAL.ite"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2186,26,2186,121)"), left{}(), format{}("%c#if%r %1 %c#then%r %2 %c#else%r %3 %c#fi%r"), function{}()] symbol Lbl'Hash'istream'LParUndsRParUnds'K-IO'Unds'Stream'Unds'Int{}(SortInt{}) : SortStream{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#istream"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2587,21,2587,34)"), left{}(), format{}("%c#istream%r %c(%r %1 %c)%r"), injective{}()] hooked-symbol Lbl'Hash'lock'LParUndsCommUndsRParUnds'K-IO'Unds'K'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), impure{}(), hook{}("IO.lock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2468,16,2468,91)"), left{}(), format{}("%c#lock%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Hash'log{}(SortString{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), returnsUnit{}(), symbol'Kywd'{}(), priorities{}(), funtional{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("#log"), hook{}("IO.logString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2562,16,2562,106)"), left{}(), format{}("%c#log%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'Hash'logToFile{}(SortString{}, SortString{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), impure{}(), klabel{}("#logToFile"), hook{}("IO.log"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2553,16,2553,116)"), left{}(), format{}("%c#logToFile%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] + hooked-symbol Lbl'Hash'log{}(SortString{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), returnsUnit{}(), symbol'Kywd'{}("#log"), priorities{}(), funtional{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.logString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2562,16,2562,106)"), left{}(), format{}("%c#log%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol Lbl'Hash'logToFile{}(SortString{}, SortString{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}("#logToFile"), priorities{}(), right{}(), terminals{}("110101"), impure{}(), hook{}("IO.log"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2553,16,2553,116)"), left{}(), format{}("%c#logToFile%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lbl'Hash'mkstemp'LParUndsRParUnds'K-IO'Unds'IOFile'Unds'String{}(SortString{}) : SortIOFile{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("#mkstemp"), hook{}("IO.mkstemp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2530,21,2530,84)"), left{}(), format{}("%c#mkstemp%r %c(%r %1 %c)%r"), function{}()] symbol Lbl'Hash'open'LParUndsRParUnds'K-IO'Unds'IOInt'Unds'String{}(SortString{}) : SortIOInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2407,20,2407,59)"), left{}(), format{}("%c#open%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbl'Hash'open'LParUndsCommUndsRParUnds'K-IO'Unds'IOInt'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortIOInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), impure{}(), hook{}("IO.open"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2408,18,2408,97)"), left{}(), format{}("%c#open%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -196,18 +196,18 @@ module LAMBDA symbol Lbl'Hash'stdin'Unds'K-IO'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2501,18,2501,46)"), left{}(), format{}("%c#stdin%r"), function{}()] symbol Lbl'Hash'stdout'Unds'K-IO'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2502,19,2502,46)"), left{}(), format{}("%c#stdout%r"), function{}()] hooked-symbol Lbl'Hash'system'LParUndsRParUnds'K-IO'Unds'KItem'Unds'String{}(SortString{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("#system"), hook{}("IO.system"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2519,20,2519,74)"), left{}(), format{}("%c#system%r %c(%r %1 %c)%r"), function{}()] - symbol Lbl'Hash'systemResult{}(SortInt{}, SortString{}, SortString{}) : SortKItem{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("#systemResult"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2520,20,2520,143)"), left{}(), format{}("%c#systemResult%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lbl'Hash'systemResult{}(SortInt{}, SortString{}, SortString{}) : SortKItem{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#systemResult"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2520,20,2520,143)"), left{}(), format{}("%c#systemResult%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] hooked-symbol Lbl'Hash'tell'LParUndsRParUnds'K-IO'Unds'IOInt'Unds'Int{}(SortInt{}) : SortIOInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.tell"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2422,20,2422,77)"), left{}(), format{}("%c#tell%r %c(%r %1 %c)%r"), function{}()] - symbol Lbl'Hash'tempFile{}(SortString{}, SortInt{}) : SortIOFile{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("#tempFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2532,21,2532,93)"), left{}(), format{}("%c#tempFile%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lbl'Hash'tempFile{}(SortString{}, SortInt{}) : SortIOFile{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#tempFile"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2532,21,2532,93)"), left{}(), format{}("%c#tempFile%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] hooked-symbol Lbl'Hash'time'LParRParUnds'K-IO'Unds'Int{}() : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("111"), impure{}(), hook{}("IO.time"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2492,18,2492,67)"), left{}(), format{}("%c#time%r %c(%r %c)%r"), function{}()] - hooked-symbol Lbl'Hash'trace{}(SortKItem{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("#trace"), hook{}("IO.traceTerm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2573,16,2573,103)"), left{}(), format{}("%c#trace%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'Hash'traceK{}(SortK{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("#traceK"), hook{}("IO.traceTerm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2574,16,2574,103)"), left{}(), format{}("%c#traceK%r %c(%r %1 %c)%r"), function{}()] - symbol Lbl'Hash'unknownIOError{}(SortInt{}) : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#unknownIOError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2316,54,2316,90)"), left{}(), format{}("%c#unknownIOError%r %c(%r %1 %c)%r"), injective{}()] + hooked-symbol Lbl'Hash'trace{}(SortKItem{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}("#trace"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.traceTerm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2573,16,2573,103)"), left{}(), format{}("%c#trace%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol Lbl'Hash'traceK{}(SortK{}) : SortK{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), returnsUnit{}(), symbol'Kywd'{}("#traceK"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), hook{}("IO.traceTerm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2574,16,2574,103)"), left{}(), format{}("%c#traceK%r %c(%r %1 %c)%r"), function{}()] + symbol Lbl'Hash'unknownIOError{}(SortInt{}) : SortIOError{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("#unknownIOError"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2316,54,2316,90)"), left{}(), format{}("%c#unknownIOError%r %c(%r %1 %c)%r"), injective{}()] hooked-symbol Lbl'Hash'unlock'LParUndsCommUndsRParUnds'K-IO'Unds'K'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), impure{}(), hook{}("IO.unlock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2469,16,2469,95)"), left{}(), format{}("%c#unlock%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lbl'Hash'write'LParUndsCommUndsRParUnds'K-IO'Unds'K'Unds'Int'Unds'String{}(SortInt{}, SortString{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), impure{}(), hook{}("IO.write"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2448,16,2448,93)"), left{}(), format{}("%c#write%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(747,19,747,142)"), left{}(), format{}("%c.List%r"), function{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), left{}(), format{}("%c.Map%r"), function{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,118)"), left{}(), format{}("%c.Set%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(747,19,747,142)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), left{}(), format{}("%c.Map%r"), function{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,118)"), left{}(), format{}("%c.Set%r"), function{}()] hooked-symbol Lbl'Stop'TaskCellList{}() : SortTaskCellList{} [priorities{}(), right{}(), terminals{}("1"), hook{}("LIST.unit"), left{}(), format{}("%c.TaskCellList%r"), function{}()] symbol Lbl'-LT-'generatedCounter'-GT-'{}(SortInt{}) : SortGeneratedCounterCell{} [functional{}(), constructor{}(), cellName{}("generatedCounter"), priorities{}(), right{}(), terminals{}("101"), left{}(), format{}("%c%r%i%n%1%d%n%c%r"), injective{}(), cell{}()] symbol Lbl'-LT-'generatedTop'-GT-'{}(SortTasksCell{}, SortGeneratedCounterCell{}) : SortGeneratedTopCell{} [functional{}(), constructor{}(), cellName{}("generatedTop"), priorities{}(), right{}(), terminals{}("1001"), left{}(), format{}("%1"), injective{}(), cell{}(), topcell{}()] @@ -224,78 +224,78 @@ module LAMBDA hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("FloatFormat"), hook{}("STRING.floatFormat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1611,21,1611,122)"), left{}(), format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblId2String'LParUndsRParUnds'ID-COMMON'Unds'String'Unds'Id{}(SortId{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Id2String"), hook{}("STRING.token2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2142,21,2142,85)"), left{}(), format{}("%cId2String%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Int2String"), hook{}("STRING.int2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1632,21,1632,99)"), left{}(), format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(766,20,766,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(813,19,813,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(755,19,755,132)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,142)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,119)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(766,20,766,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(813,19,813,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(755,19,755,132)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,142)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,119)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] hooked-symbol LblString2Base'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'Int{}(SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("String2Base"), hook{}("STRING.string2base"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1634,21,1634,99)"), left{}(), format{}("%cString2Base%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblString2Bool'LParUndsRParUnds'STRING-COMMON'Unds'Bool'Unds'String{}(SortString{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1589,19,1589,49)"), left{}(), format{}("%cString2Bool%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Float'LParUndsRParUnds'STRING-COMMON'Unds'Float'Unds'String{}(SortString{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Float"), hook{}("STRING.string2float"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1612,21,1612,94)"), left{}(), format{}("%cString2Float%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Id'LParUndsRParUnds'ID-COMMON'Unds'Id'Unds'String{}(SortString{}) : SortId{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Id"), hook{}("STRING.string2token"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2143,17,2143,80)"), left{}(), format{}("%cString2Id%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Int"), hook{}("STRING.string2int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1631,21,1631,92)"), left{}(), format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblTaskCellListItem{}(SortTaskCell{}) : SortTaskCellList{} [priorities{}(), right{}(), terminals{}("1101"), hook{}("LIST.element"), left{}(), format{}("%1"), function{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_%Int_"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,18,1047,171)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), klabel{}("_&Int_"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1058,18,1058,184)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), klabel{}("_*Int_"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1043,18,1043,183)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_%Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,18,1047,171)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_&Int_"), comm{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1058,18,1058,184)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_*Int_"), comm{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1043,18,1043,183)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] symbol Lbl'UndsStarUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}(SortExp{}, SortExp{}) : SortExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/pl-tutorial/1_k/5_types/lesson_6/lambda.k)"), priorities{}(Lbllet'UndsEqlsUnds'in'UndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp'Unds'Exp{}(),Lblmu'UndsStopUndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp{}(),Lbl'UndsPlusUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}(),Lblletrec'UndsUndsEqlsUnds'in'UndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Id'Unds'Exp'Unds'Exp{}(),Lbllambda'UndsStopUndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp{}(),Lblif'Unds'then'Unds'else'UndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp'Unds'Exp{}(),Lbl'Unds-LT-EqlsUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}()), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9,18,9,57)"), left{}(Lbl'UndsStarUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}()), format{}("%1 %c*%r %2"), injective{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), klabel{}("_+Int_"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1052,18,1052,180)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_+Int_"), comm{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1052,18,1052,180)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1522,21,1522,135)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), format{}("%1 %c+String%r %2"), function{}()] symbol Lbl'UndsPlusUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}(SortExp{}, SortExp{}) : SortExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/pl-tutorial/1_k/5_types/lesson_6/lambda.k)"), priorities{}(Lbllet'UndsEqlsUnds'in'UndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp'Unds'Exp{}(),Lblmu'UndsStopUndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp{}(),Lblletrec'UndsUndsEqlsUnds'in'UndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Id'Unds'Exp'Unds'Exp{}(),Lbllambda'UndsStopUndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp{}(),Lblif'Unds'then'Unds'else'UndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp'Unds'Exp{}(),Lbl'Unds-LT-EqlsUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}()), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(11,18,11,57)"), left{}(Lbl'UndsPlusUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}()), format{}("%1 %c+%r %2"), injective{}()] symbol Lbl'Unds'-'-GT-UndsUnds'LAMBDA'Unds'Type'Unds'Type'Unds'Type{}(SortType{}, SortType{}) : SortType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/pl-tutorial/1_k/5_types/lesson_6/lambda.k)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,19,20,33)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), klabel{}("_-Int_"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1053,18,1053,174)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_-Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1053,18,1053,174)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_/Int_"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1046,18,1046,173)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_/Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1046,18,1046,173)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] symbol Lbl'UndsSlshUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}(SortExp{}, SortExp{}) : SortExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/pl-tutorial/1_k/5_types/lesson_6/lambda.k)"), priorities{}(Lbllet'UndsEqlsUnds'in'UndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp'Unds'Exp{}(),Lblmu'UndsStopUndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp{}(),Lbl'UndsPlusUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}(),Lblletrec'UndsUndsEqlsUnds'in'UndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Id'Unds'Exp'Unds'Exp{}(),Lbllambda'UndsStopUndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp{}(),Lblif'Unds'then'Unds'else'UndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp'Unds'Exp{}(),Lbl'Unds-LT-EqlsUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}()), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10,18,10,29)"), left{}(), format{}("%1 %c/%r %2"), injective{}()] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ll_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shlInt"), terminals{}("010"), klabel{}("_<="), right{}(), terminals{}("010"), klabel{}("_>=Int_"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1116,19,1116,172)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_>=Int_"), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1116,19,1116,172)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1669,19,1669,78)"), left{}(), format{}("%1 %c>=String%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), klabel{}("_>>Int_"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1055,18,1055,173)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), klabel{}("_>Int_"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1117,19,1117,167)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>>Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1055,18,1055,173)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_>Int_"), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1117,19,1117,167)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1668,19,1668,78)"), left{}(), format{}("%1 %c>String%r %2"), function{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,19,739,188)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,165)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,19,739,188)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,165)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'TaskCellList'Unds'{}(SortTaskCellList{}, SortTaskCellList{}) : SortTaskCellList{} [unit{}(Lbl'Stop'TaskCellList{}()), element{}(LblTaskCellListItem{}()), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("LIST.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(775,19,775,108)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), klabel{}("_^%Int__"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1041,18,1041,139)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), klabel{}("_^Int_"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1040,18,1040,178)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^%Int__"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1041,18,1041,139)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1040,18,1040,178)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] symbol Lbl'UndsUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}(SortExp{}, SortExp{}) : SortExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/pl-tutorial/1_k/5_types/lesson_6/lambda.k)"), priorities{}(Lbllet'UndsEqlsUnds'in'UndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp'Unds'Exp{}(),Lblmu'UndsStopUndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp{}(),Lbl'UndsStarUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}(),Lbl'UndsPlusUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}(),Lbl'UndsSlshUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}(),Lblletrec'UndsUndsEqlsUnds'in'UndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Id'Unds'Exp'Unds'Exp{}(),Lbllambda'UndsStopUndsUnds'LAMBDA'Unds'Exp'Unds'Id'Unds'Exp{}(),Lblif'Unds'then'Unds'else'UndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp'Unds'Exp{}(),Lbl'Unds-LT-EqlsUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}()), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8,18,8,57)"), left{}(Lbl'UndsUndsUnds'LAMBDA'Unds'Exp'Unds'Exp'Unds'Exp{}()), format{}("%1 %2"), injective{}()] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andBool_"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(911,19,911,185)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andThenBool_"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(912,19,912,147)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_divInt_"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,18,1049,122)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_andBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(911,19,911,185)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_andThenBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(912,19,912,147)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_divInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,18,1049,122)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1128,19,1128,53)"), left{}(), format{}("%1 %cdividesInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_impliesBool_"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,19,916,146)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_impliesBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,19,916,146)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,97)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_modInt_"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,122)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orBool_"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,19,914,180)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orElseBool_"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(915,19,915,144)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_xorBool_"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(913,19,913,139)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), klabel{}("_xorInt_"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1060,18,1060,190)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), klabel{}("_|Int_"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,18,1062,181)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_modInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,122)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_orBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,19,914,180)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_orElseBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(915,19,915,144)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_xorBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(913,19,913,139)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_xorInt_"), comm{}(), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1060,18,1060,190)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_|Int_"), comm{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,18,1062,181)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), comm{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,18,558,92)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), right{}(), terminals{}("1101"), klabel{}("absInt"), hook{}("INT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1079,18,1079,119)"), left{}(), format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("bitRangeInt"), hook{}("INT.bitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,18,1104,103)"), left{}(), format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] @@ -370,7 +370,7 @@ module LAMBDA symbol LblnoKCell{}() : SortKCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("KCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoKCell%r"), injective{}()] symbol LblnoTasksCell{}() : SortTasksCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("TasksCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoTasksCell%r"), injective{}()] symbol LblnoTenvCell{}() : SortTenvCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("TenvCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoTenvCell%r"), injective{}()] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), klabel{}("notBool_"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(910,19,910,172)"), left{}(), format{}("%cnotBool%r %1"), function{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("notBool_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(910,19,910,172)"), left{}(), format{}("%cnotBool%r %1"), function{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("ordChar"), hook{}("STRING.ord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1540,18,1540,70)"), left{}(), format{}("%cordChar%r %c(%r %1 %c)%r"), function{}()] symbol Lblproject'ColnHash'tempFile'Coln'fd{}(SortIOFile{}) : SortInt{} [priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cfd%r %c(%r %1 %c)%r"), function{}()] symbol Lblproject'ColnHash'tempFile'Coln'path{}(SortIOFile{}) : SortString{} [priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cpath%r %c(%r %1 %c)%r"), function{}()] @@ -423,7 +423,7 @@ module LAMBDA hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("updateList"), hook{}("LIST.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(794,19,794,97)"), left{}(), format{}("%cupdateList%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("updateMap"), hook{}("MAP.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), left{}(), format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("values"), hook{}("MAP.values"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), left{}(), format{}("%cvalues%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), klabel{}("~Int_"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1038,18,1038,168)"), left{}(), format{}("%c~Int%r %1"), function{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dwightguth/kframework-5.0.0/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("~Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1038,18,1038,168)"), left{}(), format{}("%c~Int%r %1"), function{}()] // generated axioms axiom{R} \exists{R} (Val:SortKItem{}, \equals{SortKItem{}, R} (Val:SortKItem{}, inj{SortIOString{}, SortKItem{}} (From:SortIOString{}))) [subsort{SortIOString{}, SortKItem{}}()] // subsort diff --git a/test/kevm-optimism-invariant/test-optimism-invariant-definition.kore b/test/kevm-optimism-invariant/test-optimism-invariant-definition.kore index b893b6fe2d..9300b5d83d 100644 --- a/test/kevm-optimism-invariant/test-optimism-invariant-definition.kore +++ b/test/kevm-optimism-invariant/test-optimism-invariant-definition.kore @@ -612,8 +612,8 @@ module FOUNDRY-MAIN symbol Lbl'Hash'asInteger'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'ByteArray{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#asInteger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(407,20,407,62)"), left{}(), format{}("%c#asInteger%r %c(%r %1 %c)%r"), function{}()] symbol Lbl'Hash'asWord'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'ByteArray{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), smtlib{}("asWord"), terminals{}("1101"), klabel{}("#asWord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(403,20,403,75)"), left{}(), format{}("%c#asWord%r %c(%r %1 %c)%r"), function{}()] symbol Lbl'Hash'asmTxPrefix'LParUndsRParUnds'EVM-TYPES'Unds'TxType'Unds'Int{}(SortInt{}) : SortTxType{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#asmTxPrefix"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(567,23,567,54)"), left{}(), format{}("%c#asmTxPrefix%r %c(%r %1 %c)%r"), function{}()] - symbol Lbl'Hash'blockHashHeaderBaseFeeStr{}(SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101010101010101010101"), klabel{}("#blockHashHeaderBaseFeeStr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,219)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}()] - symbol Lbl'Hash'blockHashHeaderStr{}(SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101010101010101010101"), klabel{}("#blockHashHeaderStr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,204)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}()] + symbol Lbl'Hash'blockHashHeaderBaseFeeStr{}(SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}("#blockHashHeaderBaseFeeStr"), priorities{}(), right{}(), terminals{}("1101010101010101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,219)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}()] + symbol Lbl'Hash'blockHashHeaderStr{}(SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}("#blockHashHeaderStr"), priorities{}(), right{}(), terminals{}("11010101010101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,204)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}()] symbol Lbl'Hash'blockhash'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'List'Unds'Int'Unds'Int'Unds'Int{}(SortList{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("#blockhash"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1028,20,1028,68)"), left{}(), format{}("%c#blockhash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] symbol Lbl'Hash'bloomFilter'LParUndsRParUnds'EVM'Unds'ByteArray'Unds'List{}(SortList{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#bloomFilter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(702,26,702,60)"), left{}(), format{}("%c#bloomFilter%r %c(%r %1 %c)%r"), function{}()] symbol Lbl'Hash'bloomFilter'LParUndsCommUndsRParUnds'EVM'Unds'ByteArray'Unds'List'Unds'Int{}(SortList{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("#bloomFilterAux"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(703,26,703,85)"), left{}(), format{}("%c#bloomFilter%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -879,18 +879,18 @@ module FOUNDRY-MAIN symbol Lbl'Stop'Account'Unds'EVM-TYPES'Unds'Account{}() : SortAccount{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(504,24,504,34)"), left{}(), format{}("%c.Account%r"), injective{}()] symbol Lbl'Stop'ByteArray'Unds'EVM-TYPES'Unds'ByteArray{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(399,26,399,46)"), left{}(), format{}("%c.ByteArray%r"), injective{}()] hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1"), hook{}("BYTES.empty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1833,20,1833,65)"), left{}(), format{}("%c.Bytes%r"), function{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(747,19,747,142)"), left{}(), format{}("%c.List%r"), function{}()] - symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"JSONs\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), left{}(), format{}("%c.JSONs%r"), injective{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(747,19,747,142)"), left{}(), format{}("%c.List%r"), function{}()] + symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(".List{\"JSONs\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), left{}(), format{}("%c.JSONs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs'QuotRBraUnds'EventArgs{}() : SortEventArgs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"eventArgs\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(425,26,425,65)"), left{}(), format{}("%c.EventArgs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs'QuotRBraUnds'TypedArgs{}() : SortTypedArgs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"typedArgs\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,26,77,65)"), left{}(), format{}("%c.TypedArgs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'HASHED-LOCATIONS'Unds'IntList'Unds'Int'Unds'IntList'QuotRBraUnds'IntList{}() : SortIntList{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/hashed-locations.md)"), priorities{}(), right{}(), smtlib{}("intList"), terminals{}("1"), klabel{}(".List{\"intList\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,24,66,72)"), left{}(), format{}("%c.IntList%r"), injective{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), left{}(), format{}("%c.Map%r"), function{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), left{}(), format{}("%c.Map%r"), function{}()] symbol Lbl'Stop'Memory'Unds'EVM-TYPES'Unds'Memory{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(350,23,350,40)"), left{}(), format{}("%c.Memory%r"), injective{}()] symbol Lbl'Stop'MerkleTree'Unds'SERIALIZATION'Unds'MerkleTree{}() : SortMerkleTree{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(473,27,473,40)"), left{}(), format{}("%c.MerkleTree%r"), injective{}()] hooked-symbol Lbl'Stop'MessageCellMap{}() : SortMessageCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.MessageCellMap%r"), function{}()] symbol Lbl'Stop'NoOpCode'Unds'EVM'Unds'MaybeOpCode{}() : SortMaybeOpCode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(280,28,280,39)"), left{}(), format{}("%c.NoOpCode%r"), injective{}()] symbol Lbl'Stop'OpcodeType'Unds'FOUNDRY-CHEAT-CODES'Unds'OpcodeType{}() : SortOpcodeType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/foundry.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(585,27,585,40)"), left{}(), format{}("%c.OpcodeType%r"), injective{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,118)"), left{}(), format{}("%c.Set%r"), function{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,118)"), left{}(), format{}("%c.Set%r"), function{}()] symbol Lbl'Stop'StatusCode'Unds'NETWORK'Unds'StatusCode{}() : SortStatusCode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/network.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,40)"), left{}(), format{}("%c.StatusCode%r"), injective{}()] symbol Lbl'Stop'StringBuffer'Unds'STRING-BUFFER-IN-K'Unds'StringBuffer{}() : SortStringBuffer{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1760,27,1760,60)"), left{}(), format{}("%c.StringBuffer%r"), function{}()] symbol Lbl'Stop'TxType'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(555,23,555,32)"), left{}(), format{}("%c.TxType%r"), injective{}()] @@ -1036,14 +1036,14 @@ module FOUNDRY-MAIN symbol LblAccountCellMapKey{}(SortAccountCell{}) : SortAcctIDCell{} [functional{}(), total{}(), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cAccountCellMapKey%r %c(%r %1 %c)%r"), function{}()] symbol LblBALANCE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1165,26,1165,35)"), left{}(), format{}("%cBALANCE%r"), injective{}()] symbol LblBASEFEE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(975,69,975,78)"), left{}(), format{}("%cBASEFEE%r"), injective{}()] - symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), terminals{}("1"), klabel{}("BERLIN_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2666,25,2666,87)"), left{}(), format{}("%cBERLIN%r"), injective{}()] + symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("BERLIN_EVM"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2666,25,2666,87)"), left{}(), format{}("%cBERLIN%r"), injective{}()] symbol LblBLAKE2F'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1826,30,1826,39)"), left{}(), format{}("%cBLAKE2F%r"), injective{}()] symbol LblBLOCKHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1016,26,1016,37)"), left{}(), format{}("%cBLOCKHASH%r"), injective{}()] hooked-symbol LblBN128Add'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'G1Point{}(SortG1Point{}, SortG1Point{}) : SortG1Point{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("BN128Add"), hook{}("KRYPTO.bn128add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,24,103,84)"), left{}(), format{}("%cBN128Add%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblBN128AtePairing'LParUndsCommUndsRParUnds'KRYPTO'Unds'Bool'Unds'List'Unds'List{}(SortList{}, SortList{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("BN128AtePairing"), hook{}("KRYPTO.bn128ate"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,21,107,82)"), left{}(), format{}("%cBN128AtePairing%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblBN128Mul'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'Int{}(SortG1Point{}, SortInt{}) : SortG1Point{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("BN128Mul"), hook{}("KRYPTO.bn128mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,84)"), left{}(), format{}("%cBN128Mul%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblBYTE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,27,936,33)"), left{}(), format{}("%cBYTE%r"), injective{}()] - symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), terminals{}("1"), klabel{}("BYZANTIUM_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2587,25,2587,96)"), left{}(), format{}("%cBYZANTIUM%r"), injective{}()] + symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("BYZANTIUM_EVM"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2587,25,2587,96)"), left{}(), format{}("%cBYZANTIUM%r"), injective{}()] hooked-symbol LblBase2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("Base2String"), hook{}("STRING.base2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1633,21,1633,99)"), left{}(), format{}("%cBase2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblBlake2Compress'LParUndsRParUnds'KRYPTO'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cBlake2Compress%r %c(%r %1 %c)%r"), function{}(), klabel{}("Blake2Compress"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,23,121,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblBlake2CompressBytes'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cBlake2CompressBytes%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.blake2compress"), klabel{}("Blake2CompressBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1061,7 +1061,7 @@ module FOUNDRY-MAIN symbol LblCODECOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,28,1010,38)"), left{}(), format{}("%cCODECOPY%r"), injective{}()] symbol LblCODESIZE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1005,38,1005,48)"), left{}(), format{}("%cCODESIZE%r"), injective{}()] symbol LblCOINBASE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(983,28,983,38)"), left{}(), format{}("%cCOINBASE%r"), injective{}()] - symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), terminals{}("1"), klabel{}("CONSTANTINOPLE_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2603,25,2603,111)"), left{}(), format{}("%cCONSTANTINOPLE%r"), injective{}()] + symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("CONSTANTINOPLE_EVM"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2603,25,2603,111)"), left{}(), format{}("%cCONSTANTINOPLE%r"), injective{}()] symbol LblCREATE2'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1645,28,1645,37)"), left{}(), format{}("%cCREATE2%r"), injective{}()] symbol LblCREATE'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1624,28,1624,36)"), left{}(), format{}("%cCREATE%r"), injective{}()] symbol LblCaddraccess'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), total{}(), priorities{}(), right{}(), smtlib{}("gas_Caddraccess"), terminals{}("110101"), klabel{}("Caddraccess"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2232,20,2232,123)"), left{}(), format{}("%cCaddraccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -1084,7 +1084,7 @@ module FOUNDRY-MAIN symbol LblCsstore'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Schedule'Unds'Int'Unds'Int'Unds'Int{}(SortSchedule{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), total{}(), priorities{}(), right{}(), smtlib{}("gas_Csstore"), terminals{}("1101010101"), klabel{}("Csstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2226,20,2226,123)"), left{}(), format{}("%cCsstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] symbol LblCstorageaccess'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), total{}(), priorities{}(), right{}(), smtlib{}("gas_Cstorageaccess"), terminals{}("110101"), klabel{}("Cstorageaccess"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2233,20,2233,123)"), left{}(), format{}("%cCstorageaccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblCxfer'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Schedule'Unds'Int{}(SortSchedule{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), total{}(), priorities{}(), right{}(), smtlib{}("gas_Cxfer"), terminals{}("110101"), klabel{}("Cxfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2230,20,2230,123)"), left{}(), format{}("%cCxfer%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), terminals{}("1"), klabel{}("DEFAULT_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2438,25,2438,90)"), left{}(), format{}("%cDEFAULT%r"), injective{}()] + symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("DEFAULT_EVM"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2438,25,2438,90)"), left{}(), format{}("%cDEFAULT%r"), injective{}()] symbol LblDELEGATECALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1492,26,1492,40)"), left{}(), format{}("%cDELEGATECALL%r"), injective{}()] symbol LblDIFFICULTY'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(983,66,983,78)"), left{}(), format{}("%cDIFFICULTY%r"), injective{}()] symbol LblDIV'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(917,51,917,56)"), left{}(), format{}("%cDIV%r"), injective{}()] @@ -1127,7 +1127,7 @@ module FOUNDRY-MAIN symbol LblEXTCODEHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1191,26,1191,39)"), left{}(), format{}("%cEXTCODEHASH%r"), injective{}()] symbol LblEXTCODESIZE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1178,26,1178,39)"), left{}(), format{}("%cEXTCODESIZE%r"), injective{}()] symbol LblFOUNDRY'Unds'UNIMPLEMENTED'Unds'FOUNDRY-CHEAT-CODES'Unds'ExceptionalStatusCode{}() : SortExceptionalStatusCode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/foundry.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(273,38,273,61)"), left{}(), format{}("%cFOUNDRY_UNIMPLEMENTED%r"), injective{}()] - symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), terminals{}("1"), klabel{}("FRONTIER_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2527,25,2527,93)"), left{}(), format{}("%cFRONTIER%r"), injective{}()] + symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("FRONTIER_EVM"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2527,25,2527,93)"), left{}(), format{}("%cFRONTIER%r"), injective{}()] symbol LblFailed'Unds'FOUNDRY-ACCOUNTS'Unds'FoundryField{}() : SortFoundryField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/foundry.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}("slot_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,29,115,59)"), left{}(), format{}("%cFailed%r"), injective{}()] hooked-symbol LblFloat2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float{}(SortFloat{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Float2String"), hook{}("STRING.float2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1610,21,1610,101)"), left{}(), format{}("%cFloat2String%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("FloatFormat"), hook{}("STRING.floatFormat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1611,21,1611,122)"), left{}(), format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -1205,22 +1205,22 @@ module FOUNDRY-MAIN symbol LblGwarmstorageread'Unds'EVM'Unds'ScheduleConst{}() : SortScheduleConst{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2431,30,2431,48)"), left{}(), format{}("%cGwarmstorageread%r"), injective{}()] symbol LblGzero'Unds'EVM'Unds'ScheduleConst{}() : SortScheduleConst{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2424,30,2424,37)"), left{}(), format{}("%cGzero%r"), injective{}()] symbol LblGzerovaluenewaccountgas'Unds'EVM'Unds'ScheduleFlag{}() : SortScheduleFlag{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2408,102,2408,127)"), left{}(), format{}("%cGzerovaluenewaccountgas%r"), injective{}()] - symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), terminals{}("1"), klabel{}("HOMESTEAD_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2538,25,2538,96)"), left{}(), format{}("%cHOMESTEAD%r"), injective{}()] + symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("HOMESTEAD_EVM"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2538,25,2538,96)"), left{}(), format{}("%cHOMESTEAD%r"), injective{}()] symbol LblHPEncodeAux'LParUndsRParUnds'SERIALIZATION'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("HPEncodeAux"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(605,20,605,50)"), left{}(), format{}("%cHPEncodeAux%r %c(%r %1 %c)%r"), function{}()] symbol LblHex2Raw'LParUndsRParUnds'SERIALIZATION'Unds'String'Unds'String{}(SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Hex2Raw"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(260,23,260,52)"), left{}(), format{}("%cHex2Raw%r %c(%r %1 %c)%r"), function{}()] symbol LblID'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1752,30,1752,34)"), left{}(), format{}("%cID%r"), injective{}()] symbol LblINVALID'Unds'EVM'Unds'InvalidOp{}() : SortInvalidOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(859,26,859,35)"), left{}(), format{}("%cINVALID%r"), injective{}()] - symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), terminals{}("1"), klabel{}("ISTANBUL_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2632,25,2632,93)"), left{}(), format{}("%cISTANBUL%r"), injective{}()] + symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("ISTANBUL_EVM"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2632,25,2632,93)"), left{}(), format{}("%cISTANBUL%r"), injective{}()] symbol LblISZERO'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(912,26,912,34)"), left{}(), format{}("%cISZERO%r"), injective{}()] symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Endianness'Unds'Signedness{}(SortInt{}, SortEndianness{}, SortSignedness{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2BytesNoLen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1884,20,1884,100)"), left{}(), format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Bytes"), hook{}("BYTES.int2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1883,20,1883,100)"), left{}(), format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Int2String"), hook{}("STRING.int2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1632,21,1632,99)"), left{}(), format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblJSON2String'LParUndsRParUnds'JSON'Unds'String'Unds'JSON{}(SortJSON{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("JSON2String"), hook{}("JSON.json2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,23,43,75)"), left{}(), format{}("%cJSON2String%r %c(%r %1 %c)%r"), function{}()] - symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("JSONEntry"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] - symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("101"), klabel{}("JSONList"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] - symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("101"), klabel{}("JSONObject"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), left{}(), format{}("%c{%r %1 %c}%r"), injective{}()] - symbol LblJSONnull{}() : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("JSONnull"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), left{}(), format{}("%cnull%r"), injective{}()] - symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("JSONs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] + symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}("JSONEntry"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] + symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}("JSONList"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] + symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}("JSONObject"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), left{}(), format{}("%c{%r %1 %c}%r"), injective{}()] + symbol LblJSONnull{}() : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}("JSONnull"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), left{}(), format{}("%cnull%r"), injective{}()] + symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}("JSONs"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] symbol LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1045,28,1045,38)"), left{}(), format{}("%cJUMPDEST%r"), injective{}()] symbol LblJUMPI'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1060,27,1060,34)"), left{}(), format{}("%cJUMPI%r"), injective{}()] symbol LblJUMP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,26,1049,32)"), left{}(), format{}("%cJUMP%r"), injective{}()] @@ -1229,15 +1229,15 @@ module FOUNDRY-MAIN symbol LblKeccak256raw'LParUndsRParUnds'KRYPTO'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cKeccak256raw%r %c(%r %1 %c)%r"), function{}(), klabel{}("Keccak256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,20,123,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblKeccak256rawBytes'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cKeccak256rawBytes%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256raw"), klabel{}("Keccak256rawBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,22,49,109)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblLOG'LParUndsRParUnds'EVM'Unds'LogOp'Unds'Int{}(SortInt{}) : SortLogOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("LOG"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,22,1143,33)"), left{}(), format{}("%cLOG%r %c(%r %1 %c)%r"), injective{}()] - symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), terminals{}("1"), klabel{}("LONDON_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2696,25,2696,87)"), left{}(), format{}("%cLONDON%r"), injective{}()] + symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("LONDON_EVM"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2696,25,2696,87)"), left{}(), format{}("%cLONDON%r"), injective{}()] symbol LblLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,27,953,31)"), left{}(), format{}("%cLT%r"), injective{}()] symbol LblLegacyProtectedTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'ByteArray'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}, SortInt{}) : SortLegacyTx{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("LegacyProtectedTxData"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(577,29,577,150)"), left{}(), format{}("%cLegacyProtectedTxData%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] symbol LblLegacyTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'ByteArray{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}) : SortLegacyTx{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("LegacyTxData"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(576,29,576,136)"), left{}(), format{}("%cLegacyTxData%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] symbol LblLegacy'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(556,23,556,31)"), left{}(), format{}("%cLegacy%r"), injective{}()] hooked-symbol LblList2Set'LParUndsRParUnds'COLLECTIONS'Unds'Set'Unds'List{}(SortList{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("List2Set"), hook{}("SET.list2set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(860,18,860,70)"), left{}(), format{}("%cList2Set%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(766,20,766,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(813,19,813,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(755,19,755,132)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(766,20,766,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(813,19,813,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(755,19,755,132)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] symbol LblM3'Coln'2048'LParUndsRParUnds'EVM'Unds'Int'Unds'ByteArray{}(SortBytes{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,20,721,58)"), left{}(), format{}("%cM3:2048%r %c(%r %1 %c)%r"), function{}()] symbol LblMLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(891,26,891,33)"), left{}(), format{}("%cMLOAD%r"), injective{}()] symbol LblMODEXP'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1758,30,1758,38)"), left{}(), format{}("%cMODEXP%r"), injective{}()] @@ -1247,8 +1247,8 @@ module FOUNDRY-MAIN symbol LblMSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(896,27,896,35)"), left{}(), format{}("%cMSTORE%r"), injective{}()] symbol LblMULMOD'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,39,931,47)"), left{}(), format{}("%cMULMOD%r"), injective{}()] symbol LblMUL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(917,35,917,40)"), left{}(), format{}("%cMUL%r"), injective{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] symbol LblMerkleBranch'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'Map'Unds'String{}(SortMap{}, SortString{}) : SortMerkleTree{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("MerkleBranch"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(474,27,474,58)"), left{}(), format{}("%cMerkleBranch%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] symbol LblMerkleCheck'LParUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree{}(SortMerkleTree{}) : SortMerkleTree{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("MerkleCheck"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,27,547,63)"), left{}(), format{}("%cMerkleCheck%r %c(%r %1 %c)%r"), function{}()] symbol LblMerkleDelete'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree'Unds'ByteArray{}(SortMerkleTree{}, SortBytes{}) : SortMerkleTree{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("MerkleDelete"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(482,27,482,85)"), left{}(), format{}("%cMerkleDelete%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -1263,12 +1263,12 @@ module FOUNDRY-MAIN hooked-symbol LblMessageCellMap'Coln'in'Unds'keys{}(SortMsgIDCell{}, SortMessageCellMap{}) : SortBool{} [functional{}(), total{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblMessageCellMapItem{}(SortMsgIDCell{}, SortMessageCell{}) : SortMessageCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] symbol LblMessageCellMapKey{}(SortMessageCell{}) : SortMsgIDCell{} [functional{}(), total{}(), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cMessageCellMapKey%r %c(%r %1 %c)%r"), function{}()] - symbol LblNORMAL{}() : SortMode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("NORMAL"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(184,21,184,55)"), left{}(), format{}("%cNORMAL%r"), injective{}()] + symbol LblNORMAL{}() : SortMode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("NORMAL"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(184,21,184,55)"), left{}(), format{}("%cNORMAL%r"), injective{}()] symbol LblNOT'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(912,37,912,42)"), left{}(), format{}("%cNOT%r"), injective{}()] symbol LblNUMBER'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(983,55,983,63)"), left{}(), format{}("%cNUMBER%r"), injective{}()] symbol LblORIGIN'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(990,40,990,48)"), left{}(), format{}("%cORIGIN%r"), injective{}()] symbol LblPC'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(975,28,975,32)"), left{}(), format{}("%cPC%r"), injective{}()] - symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), terminals{}("1"), klabel{}("PETERSBURG_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2620,25,2620,99)"), left{}(), format{}("%cPETERSBURG%r"), injective{}()] + symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("PETERSBURG_EVM"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2620,25,2620,99)"), left{}(), format{}("%cPETERSBURG%r"), injective{}()] symbol LblPOP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(870,26,870,31)"), left{}(), format{}("%cPOP%r"), injective{}()] symbol LblPUSH'LParUndsRParUnds'EVM'Unds'PushOp'Unds'Int{}(SortInt{}) : SortPushOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("PUSH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(879,23,879,35)"), left{}(), format{}("%cPUSH%r %c(%r %1 %c)%r"), injective{}()] symbol LblRETURNDATACOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1127,28,1127,44)"), left{}(), format{}("%cRETURNDATACOPY%r"), injective{}()] @@ -1299,16 +1299,16 @@ module FOUNDRY-MAIN symbol LblSLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,26,1242,33)"), left{}(), format{}("%cSLOAD%r"), injective{}()] symbol LblSLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(959,27,959,32)"), left{}(), format{}("%cSLT%r"), injective{}()] symbol LblSMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(926,36,926,42)"), left{}(), format{}("%cSMOD%r"), injective{}()] - symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), terminals{}("1"), klabel{}("SPURIOUS_DRAGON_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2571,25,2571,114)"), left{}(), format{}("%cSPURIOUS_DRAGON%r"), injective{}()] + symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("SPURIOUS_DRAGON_EVM"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2571,25,2571,114)"), left{}(), format{}("%cSPURIOUS_DRAGON%r"), injective{}()] symbol LblSSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,27,1252,35)"), left{}(), format{}("%cSSTORE%r"), injective{}()] symbol LblSTATICCALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1505,26,1505,38)"), left{}(), format{}("%cSTATICCALL%r"), injective{}()] symbol LblSTOP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1077,28,1077,34)"), left{}(), format{}("%cSTOP%r"), injective{}()] symbol LblSUB'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(917,43,917,48)"), left{}(), format{}("%cSUB%r"), injective{}()] symbol LblSWAP'LParUndsRParUnds'EVM'Unds'StackOp'Unds'Int{}(SortInt{}) : SortStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SWAP"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(874,38,874,50)"), left{}(), format{}("%cSWAP%r %c(%r %1 %c)%r"), injective{}()] hooked-symbol LblSet2List'LParUndsRParUnds'COLLECTIONS'Unds'List'Unds'Set{}(SortSet{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Set2List"), hook{}("SET.set2list"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(859,19,859,70)"), left{}(), format{}("%cSet2List%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,142)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,119)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,142)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,119)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] symbol LblSha256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cSha256%r %c(%r %1 %c)%r"), function{}(), klabel{}("Sha256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,23,116,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha256Bytes'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha256Bytes%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256"), klabel{}("Sha256Bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblSha256raw'LParUndsRParUnds'KRYPTO'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cSha256raw%r %c(%r %1 %c)%r"), function{}(), klabel{}("Sha256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,23,124,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1334,86 +1334,86 @@ module FOUNDRY-MAIN hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Int"), hook{}("STRING.string2int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1631,21,1631,92)"), left{}(), format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2JSON'LParUndsRParUnds'JSON'Unds'JSON'Unds'String{}(SortString{}) : SortJSON{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2JSON"), hook{}("JSON.string2json"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,21,45,75)"), left{}(), format{}("%cString2JSON%r %c(%r %1 %c)%r"), function{}()] symbol LblStringBuffer2String'LParUndsRParUnds'STRING-BUFFER-IN-K'Unds'String'Unds'StringBuffer{}(SortStringBuffer{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("StringBuffer2String"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1763,21,1763,75)"), left{}(), format{}("%cStringBuffer2String%r %c(%r %1 %c)%r"), function{}()] - symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), terminals{}("1"), klabel{}("TANGERINE_WHISTLE_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2548,25,2548,120)"), left{}(), format{}("%cTANGERINE_WHISTLE%r"), injective{}()] + symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("TANGERINE_WHISTLE_EVM"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2548,25,2548,120)"), left{}(), format{}("%cTANGERINE_WHISTLE%r"), injective{}()] symbol LblTIMESTAMP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(983,41,983,52)"), left{}(), format{}("%cTIMESTAMP%r"), injective{}()] symbol LblUNDEFINED'LParUndsRParUnds'EVM'Unds'InvalidOp'Unds'Int{}(SortInt{}) : SortInvalidOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(859,38,859,61)"), left{}(), format{}("%cUNDEFINED%r %c(%r %1 %c)%r"), injective{}()] - symbol LblVMTESTS{}() : SortMode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("VMTESTS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,56)"), left{}(), format{}("%cVMTESTS%r"), injective{}()] + symbol LblVMTESTS{}() : SortMode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("VMTESTS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,56)"), left{}(), format{}("%cVMTESTS%r"), injective{}()] symbol LblWordStack2List'LParUndsRParUnds'EVM-TYPES'Unds'List'Unds'WordStack{}(SortWordStack{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WordStack2List"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(325,21,325,67)"), left{}(), format{}("%cWordStack2List%r %c(%r %1 %c)%r"), function{}()] symbol LblXOR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(947,45,947,50)"), left{}(), format{}("%cXOR%r"), injective{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_%Int_"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,18,1047,171)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_%Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,18,1047,171)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] symbol Lbl'UndsPerc'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,20,92,53)"), left{}(), format{}("%1 %c%%Word%r %2"), function{}()] symbol Lbl'UndsPerc'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,20,121,47)"), left{}(), format{}("%1 %c%%sWord%r %2"), function{}()] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), klabel{}("_&Int_"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1058,18,1058,184)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_&Int_"), comm{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1058,18,1058,184)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] symbol Lbl'UndsAnd-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(165,20,165,55)"), left{}(), format{}("%1 %c&Word%r %2"), function{}()] symbol Lbl'UndsLParUndsCommUndsRParUnds'SERIALIZATION'Unds'LengthPrefix'Unds'LengthPrefixType'Unds'Int'Unds'Int{}(SortLengthPrefixType{}, SortInt{}, SortInt{}) : SortLengthPrefix{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,29,441,65)"), left{}(), format{}("%1 %c(%r %2 %c,%r %3 %c)%r"), injective{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), klabel{}("_*Int_"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1043,18,1043,183)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_*Int_"), comm{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1043,18,1043,183)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] symbol Lbl'UndsStar'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,20,89,53)"), left{}(), format{}("%1 %c*Word%r %2"), function{}()] symbol Lbl'UndsPlusPlusUndsUnds'EVM-TYPES'Unds'ByteArray'Unds'ByteArray'Unds'ByteArray{}(SortBytes{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(Lbl'UndsPlusPlusUndsUnds'EVM-TYPES'Unds'ByteArray'Unds'ByteArray'Unds'ByteArray{}()), smtlib{}("_plusWS_"), terminals{}("010"), klabel{}("_++_WS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(420,26,420,109)"), left{}(), format{}("%1 %c++%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), hook{}("BYTES.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1980,20,1980,85)"), left{}(), format{}("%1 %c+Bytes%r %2"), function{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), klabel{}("_+Int_"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1052,18,1052,180)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_+Int_"), comm{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1052,18,1052,180)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] symbol Lbl'UndsPlus'JSONs'UndsUnds'JSON-EXT'Unds'JSONs'Unds'JSONs'Unds'JSONs{}(SortJSONs{}, SortJSONs{}) : SortJSONs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/json-rpc.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,53)"), left{}(), format{}("%1 %c+JSONs%r %2"), function{}()] symbol Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}(SortStringBuffer{}, SortString{}) : SortStringBuffer{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1761,27,1761,87)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}()), format{}("%1 %c+String%r %2"), avoid{}(), function{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1522,21,1522,135)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), format{}("%1 %c+String%r %2"), function{}()] symbol Lbl'UndsPlus'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,20,88,53)"), left{}(), format{}("%1 %c+Word%r %2"), function{}()] symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs{}(SortEventArg{}, SortEventArgs{}) : SortEventArgs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("eventArgs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(425,26,425,65)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs{}(SortTypedArg{}, SortTypedArgs{}) : SortTypedArgs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("typedArgs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,26,77,65)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), klabel{}("_-Int_"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1053,18,1053,174)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_-Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1053,18,1053,174)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] symbol Lbl'Unds'-Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,53)"), left{}(), format{}("%1 %c-Word%r %2"), function{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_/Int_"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1046,18,1046,173)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_/Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1046,18,1046,173)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] symbol Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,20,91,53)"), left{}(), format{}("%1 %c/Word%r %2"), function{}()] symbol Lbl'UndsSlsh'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,20,120,47)"), left{}(), format{}("%1 %c/sWord%r %2"), function{}()] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortInt{}, SortBytes{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(234,22,234,46)"), left{}(), format{}("%1 %c:%r %2"), function{}()] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortWordStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), smtlib{}("_WS_"), terminals{}("010"), klabel{}("_:_WS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,26,229,73)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] symbol Lbl'Unds-LT--LT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/word.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(338,20,338,47)"), left{}(), format{}("%1 %c<>%r"), function{}()] - hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("<="), right{}(), terminals{}("010"), klabel{}("_<=Int_"), hook{}("INT.le"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1114,19,1114,172)"), left{}(Lbl'Unds-LT-Eqls'Int'Unds'{}()), format{}("%1 %c<=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_<=Int_"), priorities{}(), smt-hook{}("<="), right{}(), terminals{}("010"), hook{}("INT.le"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1114,19,1114,172)"), left{}(Lbl'Unds-LT-Eqls'Int'Unds'{}()), format{}("%1 %c<=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,87)"), left{}(), format{}("%1 %c<=Map%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(596,19,596,81)"), left{}(), format{}("%1 %c<=Set%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.le"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1667,19,1667,78)"), left{}(), format{}("%1 %c<=String%r %2"), function{}()] symbol Lbl'Unds-LT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(136,20,136,54)"), left{}(), format{}("%1 %c<=Word%r %2"), function{}()] - hooked-symbol Lbl'Unds-LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{<_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("<"), right{}(), terminals{}("010"), klabel{}("_%r"), function{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("distinct"), right{}(), terminals{}("010"), klabel{}("_=/=Bool_"), hook{}("BOOL.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(919,19,919,128)"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), format{}("%1 %c=/=Bool%r %2"), function{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("distinct"), right{}(), terminals{}("010"), klabel{}("_=/=Int_"), hook{}("INT.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1119,19,1119,184)"), left{}(Lbl'UndsEqlsSlshEqls'Int'Unds'{}()), format{}("%1 %c=/=Int%r %2"), function{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [latex{}("{#1}\\mathrel{\\neq_K}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), notEqualEqualK{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("distinct"), right{}(), terminals{}("010"), klabel{}("_=/=K_"), hook{}("KEQUAL.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2182,19,2182,166)"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), format{}("%1 %c=/=K%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_=/=Bool_"), priorities{}(), smt-hook{}("distinct"), right{}(), terminals{}("010"), hook{}("BOOL.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(919,19,919,128)"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), format{}("%1 %c=/=Bool%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_=/=Int_"), priorities{}(), smt-hook{}("distinct"), right{}(), terminals{}("010"), hook{}("INT.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1119,19,1119,184)"), left{}(Lbl'UndsEqlsSlshEqls'Int'Unds'{}()), format{}("%1 %c=/=Int%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [latex{}("{#1}\\mathrel{\\neq_K}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_=/=K_"), notEqualEqualK{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("distinct"), right{}(), terminals{}("010"), hook{}("KEQUAL.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2182,19,2182,166)"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), format{}("%1 %c=/=K%r %2"), function{}()] hooked-symbol Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1663,19,1663,90)"), left{}(Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}()), format{}("%1 %c=/=String%r %2"), function{}()] - hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("="), right{}(), terminals{}("010"), klabel{}("_==Bool_"), hook{}("BOOL.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(918,19,918,120)"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), format{}("%1 %c==Bool%r %2"), function{}()] - hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("="), right{}(), terminals{}("010"), klabel{}("_==Int_"), hook{}("INT.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1118,19,1118,173)"), left{}(Lbl'UndsEqlsEqls'Int'Unds'{}()), format{}("%1 %c==Int%r %2"), function{}()] - hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [latex{}("{#1}\\mathrel{=_K}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("="), right{}(), terminals{}("010"), equalEqualK{}(), klabel{}("_==K_"), hook{}("KEQUAL.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2181,19,2181,152)"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), format{}("%1 %c==K%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_==Bool_"), priorities{}(), smt-hook{}("="), right{}(), terminals{}("010"), hook{}("BOOL.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(918,19,918,120)"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), format{}("%1 %c==Bool%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_==Int_"), priorities{}(), smt-hook{}("="), right{}(), terminals{}("010"), hook{}("INT.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1118,19,1118,173)"), left{}(Lbl'UndsEqlsEqls'Int'Unds'{}()), format{}("%1 %c==Int%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [latex{}("{#1}\\mathrel{=_K}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_==K_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("="), right{}(), terminals{}("010"), equalEqualK{}(), hook{}("KEQUAL.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2181,19,2181,152)"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), format{}("%1 %c==K%r %2"), function{}()] hooked-symbol Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1662,19,1662,84)"), left{}(Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}()), format{}("%1 %c==String%r %2"), function{}()] symbol Lbl'UndsEqlsEqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(138,20,138,54)"), left{}(), format{}("%1 %c==Word%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), klabel{}("_>=Int_"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1116,19,1116,172)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_>=Int_"), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1116,19,1116,172)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1669,19,1669,78)"), left{}(), format{}("%1 %c>=String%r %2"), function{}()] symbol Lbl'Unds-GT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,20,137,54)"), left{}(), format{}("%1 %c>=Word%r %2"), function{}()] symbol Lbl'Unds-GT--GT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/word.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(339,20,339,47)"), left{}(), format{}("%1 %c>>Byte%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), klabel{}("_>>Int_"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1055,18,1055,173)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>>Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1055,18,1055,173)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] symbol Lbl'Unds-GT--GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,20,168,48)"), left{}(), format{}("%1 %c>>Word%r %2"), function{}()] symbol Lbl'Unds-GT--GT-'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(169,20,169,48)"), left{}(), format{}("%1 %c>>sWord%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), klabel{}("_>Int_"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1117,19,1117,167)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_>Int_"), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1117,19,1117,167)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1668,19,1668,78)"), left{}(), format{}("%1 %c>String%r %2"), function{}()] symbol Lbl'Unds-GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(135,20,135,54)"), left{}(), format{}("%1 %c>Word%r %2"), function{}()] hooked-symbol Lbl'Unds'AccountCellMap'Unds'{}(SortAccountCellMap{}, SortAccountCellMap{}) : SortAccountCellMap{} [unit{}(Lbl'Stop'AccountCellMap{}()), element{}(LblAccountCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,19,739,188)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,19,739,188)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'MessageCellMap'Unds'{}(SortMessageCellMap{}, SortMessageCellMap{}) : SortMessageCellMap{} [unit{}(Lbl'Stop'MessageCellMap{}()), element{}(LblMessageCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,172)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,172)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] symbol Lbl'UndsLSqBUndsStopStopUndsRSqBUnds'EVM-TYPES'Unds'ByteArray'Unds'ByteArray'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(424,26,424,74)"), left{}(), format{}("%1 %c[%r %2 %c..%r %3 %c]%r"), function{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Memory'Unds'Memory'Unds'Int'Unds'ByteArray{}(SortBytes{}, SortInt{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010101"), klabel{}("mapWriteBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(341,23,341,97)"), left{}(), format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Memory'Unds'Memory'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(354,23,354,61)"), left{}(), format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'WordStack'Unds'WordStack'Unds'Int'Unds'Int{}(SortWordStack{}, SortInt{}, SortInt{}) : SortWordStack{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(285,26,285,74)"), left{}(), format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), hook{}("BYTES.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1906,20,1906,91)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(775,19,775,108)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101"), hook{}("BYTES.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1915,18,1915,63)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] symbol Lbl'UndsLSqBUndsRSqBUnds'EVM-TYPES'Unds'Int'Unds'WordStack'Unds'Int{}(SortWordStack{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("0101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(279,20,279,59)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), klabel{}("_^%Int__"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1041,18,1041,139)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), klabel{}("_^Int_"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1040,18,1040,178)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^%Int__"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1041,18,1041,139)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1040,18,1040,178)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] symbol Lbl'UndsXor-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,20,108,52)"), left{}(), format{}("%1 %c^Word%r %2"), function{}()] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'StackOp'Unds'WordStack{}(SortStackOp{}, SortWordStack{}) : SortInternalOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(467,27,467,44)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int{}(SortUnStackOp{}, SortInt{}) : SortInternalOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(453,27,453,42)"), left{}(), format{}("%1 %2"), injective{}()] @@ -1423,77 +1423,77 @@ module FOUNDRY-MAIN symbol Lbl'UndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'QuadStackOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortQuadStackOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("00000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(456,27,456,54)"), left{}(), format{}("%1 %2 %3 %4 %5"), injective{}()] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallSixOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallSixOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("0000000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(475,27,475,64)"), left{}(), format{}("%1 %2 %3 %4 %5 %6 %7"), injective{}()] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("00000000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(476,27,476,64)"), left{}(), format{}("%1 %2 %3 %4 %5 %6 %7 %8"), injective{}()] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andBool_"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(911,19,911,185)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andThenBool_"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(912,19,912,147)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_divInt_"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,18,1049,122)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_andBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(911,19,911,185)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_andThenBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(912,19,912,147)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_divInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,18,1049,122)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1128,19,1128,53)"), left{}(), format{}("%1 %cdividesInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_impliesBool_"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,19,916,146)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_impliesBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,19,916,146)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] symbol Lbl'Unds'in'UndsUnds'EVM-TYPES'Unds'Bool'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(304,21,304,50)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,97)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_modInt_"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,122)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orBool_"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,19,914,180)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orElseBool_"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(915,19,915,144)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_modInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,122)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_orBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,19,914,180)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_orElseBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(915,19,915,144)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] symbol Lbl'Unds's'-LT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(150,20,150,54)"), left{}(), format{}("%1 %cs_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), klabel{}("_|Int_"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,18,1062,181)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_|Int_"), comm{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,18,1062,181)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), comm{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,18,558,92)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] symbol Lbl'UndsPipe'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,20,164,55)"), left{}(), format{}("%1 %c|Word%r %2"), function{}()] - symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), macro{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_selector"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(461,20,461,102)"), no-evaluators{}(), left{}(), format{}("%cselector%r %c(%r %1 %c)%r"), alias'Kywd'{}(), function{}()] - symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_address"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), left{}(), format{}("%c#address%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("abi_type_array"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), left{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), left{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), left{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_bytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), left{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_bytes4"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), left{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_int128"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), left{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_int256"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), left{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), left{}(), format{}("%c#string%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint104"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), left{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint112"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), left{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint120"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), left{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint128"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), left{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint136"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), left{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint144"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), left{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint152"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), left{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint16"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), left{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint160"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), left{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint168"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), left{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint176"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), left{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint184"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), left{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint192"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), left{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint200"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), left{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint208"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), left{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint216"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), left{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint224"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), left{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint232"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), left{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint24"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), left{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint240"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), left{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint248"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), left{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint256"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), left{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), left{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint40"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), left{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint48"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), left{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint56"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), left{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), left{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint72"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), left{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint8"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), left{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint80"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), left{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint88"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), left{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint96"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), left{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_selector"), macro{}(), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(461,20,461,102)"), no-evaluators{}(), left{}(), format{}("%cselector%r %c(%r %1 %c)%r"), alias'Kywd'{}(), function{}()] + symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_address"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), left{}(), format{}("%c#address%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_array"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), left{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_bool"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), left{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_bytes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), left{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_bytes32"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), left{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_bytes4"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), left{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_int128"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), left{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_int256"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), left{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_string"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), left{}(), format{}("%c#string%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint104"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), left{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint112"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), left{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint120"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), left{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint128"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), left{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint136"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), left{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint144"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), left{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint152"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), left{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint16"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), left{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint160"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), left{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint168"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), left{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint176"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), left{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint184"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), left{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint192"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), left{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint200"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), left{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint208"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), left{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint216"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), left{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint224"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), left{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint232"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), left{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint24"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), left{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint240"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), left{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint248"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), left{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint256"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), left{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint32"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), left{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint40"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), left{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint48"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), left{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint56"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), left{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint64"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), left{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint72"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), left{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint8"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), left{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint80"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), left{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint88"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), left{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint96"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), left{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), injective{}()] symbol Lblabs'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,20,46,49)"), left{}(), format{}("%cabs%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), right{}(), terminals{}("1101"), klabel{}("absInt"), hook{}("INT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1079,18,1079,119)"), left{}(), format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}()] - symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("accountEmpty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2333,21,2333,103)"), left{}(), format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("bigEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1844,25,1844,62)"), left{}(), format{}("%cBE%r"), injective{}()] - symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/edsl.md)"), symbol'Kywd'{}(), macro{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("binRuntime"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,26,30,111)"), no-evaluators{}(), left{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), alias'Kywd'{}(), function{}()] + symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("accountEmpty"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2333,21,2333,103)"), left{}(), format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("bigEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1844,25,1844,62)"), left{}(), format{}("%cBE%r"), injective{}()] + symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/edsl.md)"), symbol'Kywd'{}("binRuntime"), macro{}(), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,26,30,111)"), no-evaluators{}(), left{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), alias'Kywd'{}(), function{}()] symbol Lblbit'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("bit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,20,185,49)"), left{}(), format{}("%cbit%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("bitRangeInt"), hook{}("INT.bitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,18,1104,103)"), left{}(), format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101010101010101010101"), klabel{}("blockHeaderHash"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,183)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}()] - symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101010101010101010101"), klabel{}("blockHeaderHashBaseFee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,195)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}()] + symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}("blockHeaderHash"), priorities{}(), right{}(), terminals{}("11010101010101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,183)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}()] + symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}("blockHeaderHashBaseFee"), priorities{}(), right{}(), terminals{}("1101010101010101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,195)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}()] symbol Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool{}(SortBool{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), smtlib{}("bool2Word"), terminals{}("1101"), klabel{}("bool2Word"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,75)"), left{}(), format{}("%cbool2Word%r %c(%r %1 %c)%r"), function{}()] symbol Lblbyte'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("byte"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,20,186,49)"), left{}(), format{}("%cbyte%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblcategoryChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("categoryChar"), hook{}("STRING.category"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1679,21,1679,81)"), left{}(), format{}("%ccategoryChar%r %c(%r %1 %c)%r"), function{}()] @@ -1503,136 +1503,136 @@ module FOUNDRY-MAIN hooked-symbol LblchrChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("chrChar"), hook{}("STRING.chr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1539,21,1539,70)"), left{}(), format{}("%cchrChar%r %c(%r %1 %c)%r"), function{}()] symbol LblconcatHead'LParUndsRParUnds'OPTIMISM-LEMMAS'Unds'ByteArray'Unds'ByteArray{}(SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/optimism-lemmas.k)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("concatHead"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(321,26,321,65)"), left{}(), format{}("%cconcatHead%r %c(%r %1 %c)%r"), function{}()] symbol LblconcatTail'LParUndsRParUnds'OPTIMISM-LEMMAS'Unds'ByteArray'Unds'ByteArray{}(SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/optimism-lemmas.k)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("concatTail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(323,26,323,65)"), left{}(), format{}("%cconcatTail%r %c(%r %1 %c)%r"), function{}()] - symbol Lblcontract'Unds'Address{}() : SortAddressContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Address"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10,32,10,78)"), left{}(), format{}("%cAddress%r"), injective{}()] - symbol Lblcontract'Unds'AddressAliasHelper{}() : SortAddressAliasHelperContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_AddressAliasHelper"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,43,23,111)"), left{}(), format{}("%cAddressAliasHelper%r"), injective{}()] - symbol Lblcontract'Unds'AddressManager{}() : SortAddressManagerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_AddressManager"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,39,36,99)"), left{}(), format{}("%cAddressManager%r"), injective{}()] - symbol Lblcontract'Unds'AddressUpgradeable{}() : SortAddressUpgradeableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_AddressUpgradeable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,43,93,111)"), left{}(), format{}("%cAddressUpgradeable%r"), injective{}()] - symbol Lblcontract'Unds'BaseFeeVault{}() : SortBaseFeeVaultContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_BaseFeeVault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,37,106,93)"), left{}(), format{}("%cBaseFeeVault%r"), injective{}()] - symbol Lblcontract'Unds'BaseSystemDictator{}() : SortBaseSystemDictatorContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_BaseSystemDictator"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,43,153,111)"), left{}(), format{}("%cBaseSystemDictator%r"), injective{}()] - symbol Lblcontract'Unds'Burn{}() : SortBurnContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Burn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,29,209,69)"), left{}(), format{}("%cBurn%r"), injective{}()] - symbol Lblcontract'Unds'Burner{}() : SortBurnerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Burner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(222,31,222,75)"), left{}(), format{}("%cBurner%r"), injective{}()] - symbol Lblcontract'Unds'Bytes{}() : SortBytesContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,30,235,72)"), left{}(), format{}("%cBytes%r"), injective{}()] - symbol Lblcontract'Unds'CalldataSpec{}() : SortCalldataSpecContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_CalldataSpec"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,37,442,93)"), left{}(), format{}("%cCalldataSpec%r"), injective{}()] - symbol Lblcontract'Unds'CalldataSpecMetered{}() : SortCalldataSpecMeteredContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_CalldataSpecMetered"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,44,248,114)"), left{}(), format{}("%cCalldataSpecMetered%r"), injective{}()] - symbol Lblcontract'Unds'CommonBase{}() : SortCommonBaseContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_CommonBase"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(572,35,572,87)"), left{}(), format{}("%cCommonBase%r"), injective{}()] - symbol Lblcontract'Unds'Components{}() : SortComponentsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Components"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(585,35,585,87)"), left{}(), format{}("%cComponents%r"), injective{}()] - symbol Lblcontract'Unds'Context{}() : SortContextContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Context"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(598,32,598,78)"), left{}(), format{}("%cContext%r"), injective{}()] - symbol Lblcontract'Unds'ContextUpgradeable{}() : SortContextUpgradeableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ContextUpgradeable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(611,43,611,111)"), left{}(), format{}("%cContextUpgradeable%r"), injective{}()] - symbol Lblcontract'Unds'Counters{}() : SortCountersContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Counters"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(624,33,624,81)"), left{}(), format{}("%cCounters%r"), injective{}()] - symbol Lblcontract'Unds'CrossDomainMessenger{}() : SortCrossDomainMessengerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_CrossDomainMessenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(637,45,637,117)"), left{}(), format{}("%cCrossDomainMessenger%r"), injective{}()] - symbol Lblcontract'Unds'CrossDomainMessengerLegacySpacer{}() : SortCrossDomainMessengerLegacySpacerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_CrossDomainMessengerLegacySpacer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,57,821,153)"), left{}(), format{}("%cCrossDomainMessengerLegacySpacer%r"), injective{}()] - symbol Lblcontract'Unds'CrossDomainOwnable{}() : SortCrossDomainOwnableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_CrossDomainOwnable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(834,43,834,111)"), left{}(), format{}("%cCrossDomainOwnable%r"), injective{}()] - symbol Lblcontract'Unds'CrossDomainOwnable2{}() : SortCrossDomainOwnable2Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_CrossDomainOwnable2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(874,44,874,114)"), left{}(), format{}("%cCrossDomainOwnable2%r"), injective{}()] - symbol Lblcontract'Unds'DSTest{}() : SortDSTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_DSTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7994,31,7994,75)"), left{}(), format{}("%cDSTest%r"), injective{}()] - symbol Lblcontract'Unds'DeployerWhitelist{}() : SortDeployerWhitelistContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_DeployerWhitelist"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,42,914,108)"), left{}(), format{}("%cDeployerWhitelist%r"), injective{}()] - symbol Lblcontract'Unds'ECDSA{}() : SortECDSAContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ECDSA"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(991,30,991,72)"), left{}(), format{}("%cECDSA%r"), injective{}()] - symbol Lblcontract'Unds'EIP712{}() : SortEIP712Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_EIP712"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1004,31,1004,75)"), left{}(), format{}("%cEIP712%r"), injective{}()] - symbol Lblcontract'Unds'ERC165{}() : SortERC165Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ERC165"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1017,31,1017,75)"), left{}(), format{}("%cERC165%r"), injective{}()] - symbol Lblcontract'Unds'ERC165Checker{}() : SortERC165CheckerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ERC165Checker"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1041,38,1041,96)"), left{}(), format{}("%cERC165Checker%r"), injective{}()] - symbol Lblcontract'Unds'ERC20{}() : SortERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1054,30,1054,72)"), left{}(), format{}("%cERC20%r"), injective{}()] - symbol Lblcontract'Unds'ERC20Burnable{}() : SortERC20BurnableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ERC20Burnable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1177,38,1177,96)"), left{}(), format{}("%cERC20Burnable%r"), injective{}()] - symbol Lblcontract'Unds'ERC20Permit{}() : SortERC20PermitContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ERC20Permit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9967,36,9967,90)"), left{}(), format{}("%cERC20Permit%r"), injective{}()] - symbol Lblcontract'Unds'ERC20Votes{}() : SortERC20VotesContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ERC20Votes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1320,35,1320,87)"), left{}(), format{}("%cERC20Votes%r"), injective{}()] - symbol Lblcontract'Unds'ERC721{}() : SortERC721Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1558,31,1558,75)"), left{}(), format{}("%cERC721%r"), injective{}()] - symbol Lblcontract'Unds'ERC721Bridge{}() : SortERC721BridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ERC721Bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1703,37,1703,93)"), left{}(), format{}("%cERC721Bridge%r"), injective{}()] - symbol Lblcontract'Unds'ERC721Enumerable{}() : SortERC721EnumerableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ERC721Enumerable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1779,41,1779,105)"), left{}(), format{}("%cERC721Enumerable%r"), injective{}()] - symbol Lblcontract'Unds'Encoding{}() : SortEncodingContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Encoding"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1952,33,1952,81)"), left{}(), format{}("%cEncoding%r"), injective{}()] - symbol Lblcontract'Unds'FeeVault{}() : SortFeeVaultContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_FeeVault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1965,33,1965,81)"), left{}(), format{}("%cFeeVault%r"), injective{}()] - symbol Lblcontract'Unds'FixedPointMathLib{}() : SortFixedPointMathLibContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_FixedPointMathLib"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2004,42,2004,108)"), left{}(), format{}("%cFixedPointMathLib%r"), injective{}()] - symbol Lblcontract'Unds'FreshSystemDictator{}() : SortFreshSystemDictatorContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_FreshSystemDictator"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2017,44,2017,114)"), left{}(), format{}("%cFreshSystemDictator%r"), injective{}()] - symbol Lblcontract'Unds'GasPriceOracle{}() : SortGasPriceOracleContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_GasPriceOracle"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2089,39,2089,99)"), left{}(), format{}("%cGasPriceOracle%r"), injective{}()] - symbol Lblcontract'Unds'GovernanceToken{}() : SortGovernanceTokenContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_GovernanceToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2178,40,2178,102)"), left{}(), format{}("%cGovernanceToken%r"), injective{}()] - symbol Lblcontract'Unds'Hashing{}() : SortHashingContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Hashing"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2472,32,2472,78)"), left{}(), format{}("%cHashing%r"), injective{}()] - symbol Lblcontract'Unds'IERC165{}() : SortIERC165Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IERC165"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2485,32,2485,78)"), left{}(), format{}("%cIERC165%r"), injective{}()] - symbol Lblcontract'Unds'IERC20{}() : SortIERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2509,31,2509,75)"), left{}(), format{}("%cIERC20%r"), injective{}()] - symbol Lblcontract'Unds'IERC20Metadata{}() : SortIERC20MetadataContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IERC20Metadata"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2586,39,2586,99)"), left{}(), format{}("%cIERC20Metadata%r"), injective{}()] - symbol Lblcontract'Unds'IERC20Permit{}() : SortIERC20PermitContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IERC20Permit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10123,37,10123,93)"), left{}(), format{}("%cIERC20Permit%r"), injective{}()] - symbol Lblcontract'Unds'IERC721{}() : SortIERC721Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2687,32,2687,78)"), left{}(), format{}("%cIERC721%r"), injective{}()] - symbol Lblcontract'Unds'IERC721Enumerable{}() : SortIERC721EnumerableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IERC721Enumerable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2807,42,2807,108)"), left{}(), format{}("%cIERC721Enumerable%r"), injective{}()] - symbol Lblcontract'Unds'IERC721Metadata{}() : SortIERC721MetadataContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IERC721Metadata"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2955,40,2955,102)"), left{}(), format{}("%cIERC721Metadata%r"), injective{}()] - symbol Lblcontract'Unds'IERC721Receiver{}() : SortIERC721ReceiverContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IERC721Receiver"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3100,40,3100,102)"), left{}(), format{}("%cIERC721Receiver%r"), injective{}()] - symbol Lblcontract'Unds'IL1ChugSplashDeployer{}() : SortIL1ChugSplashDeployerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IL1ChugSplashDeployer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3361,46,3361,120)"), left{}(), format{}("%cIL1ChugSplashDeployer%r"), injective{}()] - symbol Lblcontract'Unds'ILegacyMintableERC20{}() : SortILegacyMintableERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ILegacyMintableERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7539,45,7539,117)"), left{}(), format{}("%cILegacyMintableERC20%r"), injective{}()] - symbol Lblcontract'Unds'IOptimismMintableERC20{}() : SortIOptimismMintableERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IOptimismMintableERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7584,47,7584,123)"), left{}(), format{}("%cIOptimismMintableERC20%r"), injective{}()] - symbol Lblcontract'Unds'IOptimismMintableERC721{}() : SortIOptimismMintableERC721Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IOptimismMintableERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7637,48,7637,126)"), left{}(), format{}("%cIOptimismMintableERC721%r"), injective{}()] - symbol Lblcontract'Unds'IStaticERC1967Proxy{}() : SortIStaticERC1967ProxyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IStaticERC1967Proxy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6495,44,6495,114)"), left{}(), format{}("%cIStaticERC1967Proxy%r"), injective{}()] - symbol Lblcontract'Unds'IStaticL1ChugSplashProxy{}() : SortIStaticL1ChugSplashProxyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IStaticL1ChugSplashProxy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6526,49,6526,129)"), left{}(), format{}("%cIStaticL1ChugSplashProxy%r"), injective{}()] - symbol Lblcontract'Unds'IVotes{}() : SortIVotesContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_IVotes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3128,31,3128,75)"), left{}(), format{}("%cIVotes%r"), injective{}()] - symbol Lblcontract'Unds'Initializable{}() : SortInitializableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Initializable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3205,38,3205,96)"), left{}(), format{}("%cInitializable%r"), injective{}()] - symbol Lblcontract'Unds'L1Block{}() : SortL1BlockContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L1Block"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3218,32,3218,78)"), left{}(), format{}("%cL1Block%r"), injective{}()] - symbol Lblcontract'Unds'L1BlockNumber{}() : SortL1BlockNumberContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L1BlockNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3330,38,3330,96)"), left{}(), format{}("%cL1BlockNumber%r"), injective{}()] - symbol Lblcontract'Unds'L1ChugSplashProxy{}() : SortL1ChugSplashProxyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L1ChugSplashProxy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3384,42,3384,108)"), left{}(), format{}("%cL1ChugSplashProxy%r"), injective{}()] - symbol Lblcontract'Unds'L1CrossDomainMessenger{}() : SortL1CrossDomainMessengerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L1CrossDomainMessenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3444,47,3444,123)"), left{}(), format{}("%cL1CrossDomainMessenger%r"), injective{}()] - symbol Lblcontract'Unds'L1ERC721Bridge{}() : SortL1ERC721BridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L1ERC721Bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3653,39,3653,99)"), left{}(), format{}("%cL1ERC721Bridge%r"), injective{}()] - symbol Lblcontract'Unds'L1FeeVault{}() : SortL1FeeVaultContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L1FeeVault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3764,35,3764,87)"), left{}(), format{}("%cL1FeeVault%r"), injective{}()] - symbol Lblcontract'Unds'L1StandardBridge{}() : SortL1StandardBridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L1StandardBridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3811,41,3811,105)"), left{}(), format{}("%cL1StandardBridge%r"), injective{}()] - symbol Lblcontract'Unds'L2CrossDomainMessenger{}() : SortL2CrossDomainMessengerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L2CrossDomainMessenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4037,47,4037,123)"), left{}(), format{}("%cL2CrossDomainMessenger%r"), injective{}()] - symbol Lblcontract'Unds'L2ERC721Bridge{}() : SortL2ERC721BridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L2ERC721Bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4245,39,4245,99)"), left{}(), format{}("%cL2ERC721Bridge%r"), injective{}()] - symbol Lblcontract'Unds'L2OutputOracle{}() : SortL2OutputOracleContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L2OutputOracle"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4344,39,4344,99)"), left{}(), format{}("%cL2OutputOracle%r"), injective{}()] - symbol Lblcontract'Unds'L2StandardBridge{}() : SortL2StandardBridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L2StandardBridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4513,41,4513,105)"), left{}(), format{}("%cL2StandardBridge%r"), injective{}()] - symbol Lblcontract'Unds'L2ToL1MessagePasser{}() : SortL2ToL1MessagePasserContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_L2ToL1MessagePasser"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4693,44,4693,114)"), left{}(), format{}("%cL2ToL1MessagePasser%r"), injective{}()] - symbol Lblcontract'Unds'LegacyERC20ETH{}() : SortLegacyERC20ETHContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_LegacyERC20ETH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4753,39,4753,99)"), left{}(), format{}("%cLegacyERC20ETH%r"), injective{}()] - symbol Lblcontract'Unds'LegacyMessagePasser{}() : SortLegacyMessagePasserContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_LegacyMessagePasser"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4939,44,4939,114)"), left{}(), format{}("%cLegacyMessagePasser%r"), injective{}()] - symbol Lblcontract'Unds'Machinery{}() : SortMachineryContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Machinery"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4980,34,4980,84)"), left{}(), format{}("%cMachinery%r"), injective{}()] - symbol Lblcontract'Unds'Math{}() : SortMathContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Math"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5070,29,5070,69)"), left{}(), format{}("%cMath%r"), injective{}()] - symbol Lblcontract'Unds'MerkleTrie{}() : SortMerkleTrieContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_MerkleTrie"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5083,35,5083,87)"), left{}(), format{}("%cMerkleTrie%r"), injective{}()] - symbol Lblcontract'Unds'Metered{}() : SortMeteredContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Metered"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5096,32,5096,78)"), left{}(), format{}("%cMetered%r"), injective{}()] - symbol Lblcontract'Unds'MigrationSystemDictator{}() : SortMigrationSystemDictatorContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_MigrationSystemDictator"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5324,48,5324,126)"), left{}(), format{}("%cMigrationSystemDictator%r"), injective{}()] - symbol Lblcontract'Unds'OptimismMintableERC20{}() : SortOptimismMintableERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_OptimismMintableERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5428,46,5428,120)"), left{}(), format{}("%cOptimismMintableERC20%r"), injective{}()] - symbol Lblcontract'Unds'OptimismMintableERC20Factory{}() : SortOptimismMintableERC20FactoryContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_OptimismMintableERC20Factory"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5614,53,5614,141)"), left{}(), format{}("%cOptimismMintableERC20Factory%r"), injective{}()] - symbol Lblcontract'Unds'OptimismMintableERC721{}() : SortOptimismMintableERC721Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_OptimismMintableERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5671,47,5671,123)"), left{}(), format{}("%cOptimismMintableERC721%r"), injective{}()] - symbol Lblcontract'Unds'OptimismMintableERC721Factory{}() : SortOptimismMintableERC721FactoryContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_OptimismMintableERC721Factory"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5922,54,5922,144)"), left{}(), format{}("%cOptimismMintableERC721Factory%r"), injective{}()] - symbol Lblcontract'Unds'OptimismPortal{}() : SortOptimismPortalContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_OptimismPortal"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5995,39,5995,99)"), left{}(), format{}("%cOptimismPortal%r"), injective{}()] - symbol Lblcontract'Unds'OptmimismPortalTest{}() : SortOptmimismPortalTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_OptmimismPortalTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6165,44,6165,114)"), left{}(), format{}("%cOptmimismPortalTest%r"), injective{}()] - symbol Lblcontract'Unds'Ownable{}() : SortOwnableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Ownable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6288,32,6288,78)"), left{}(), format{}("%cOwnable%r"), injective{}()] - symbol Lblcontract'Unds'OwnableUpgradeable{}() : SortOwnableUpgradeableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_OwnableUpgradeable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6328,43,6328,111)"), left{}(), format{}("%cOwnableUpgradeable%r"), injective{}()] - symbol Lblcontract'Unds'PausableUpgradeable{}() : SortPausableUpgradeableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_PausableUpgradeable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6368,44,6368,114)"), left{}(), format{}("%cPausableUpgradeable%r"), injective{}()] - symbol Lblcontract'Unds'PortalSender{}() : SortPortalSenderContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_PortalSender"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6391,37,6391,93)"), left{}(), format{}("%cPortalSender%r"), injective{}()] - symbol Lblcontract'Unds'Predeploys{}() : SortPredeploysContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Predeploys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6422,35,6422,87)"), left{}(), format{}("%cPredeploys%r"), injective{}()] - symbol Lblcontract'Unds'Proxy{}() : SortProxyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Proxy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6435,30,6435,72)"), left{}(), format{}("%cProxy%r"), injective{}()] - symbol Lblcontract'Unds'ProxyAdmin{}() : SortProxyAdminContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ProxyAdmin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6557,35,6557,87)"), left{}(), format{}("%cProxyAdmin%r"), injective{}()] - symbol Lblcontract'Unds'RLPReader{}() : SortRLPReaderContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_RLPReader"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6730,34,6730,84)"), left{}(), format{}("%cRLPReader%r"), injective{}()] - symbol Lblcontract'Unds'RLPWriter{}() : SortRLPWriterContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_RLPWriter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6743,34,6743,84)"), left{}(), format{}("%cRLPWriter%r"), injective{}()] - symbol Lblcontract'Unds'ReentrancyGuardUpgradeable{}() : SortReentrancyGuardUpgradeableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ReentrancyGuardUpgradeable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6756,51,6756,135)"), left{}(), format{}("%cReentrancyGuardUpgradeable%r"), injective{}()] - symbol Lblcontract'Unds'ResolvedDelegateProxy{}() : SortResolvedDelegateProxyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ResolvedDelegateProxy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6769,46,6769,120)"), left{}(), format{}("%cResolvedDelegateProxy%r"), injective{}()] - symbol Lblcontract'Unds'ResourceMetering{}() : SortResourceMeteringContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ResourceMetering"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6782,41,6782,105)"), left{}(), format{}("%cResourceMetering%r"), injective{}()] - symbol Lblcontract'Unds'SafeCall{}() : SortSafeCallContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SafeCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6853,33,6853,81)"), left{}(), format{}("%cSafeCall%r"), injective{}()] - symbol Lblcontract'Unds'SafeCast{}() : SortSafeCastContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SafeCast"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6866,33,6866,81)"), left{}(), format{}("%cSafeCast%r"), injective{}()] - symbol Lblcontract'Unds'SafeERC20{}() : SortSafeERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SafeERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6879,34,6879,84)"), left{}(), format{}("%cSafeERC20%r"), injective{}()] - symbol Lblcontract'Unds'SecureMerkleTrie{}() : SortSecureMerkleTrieContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SecureMerkleTrie"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6892,41,6892,105)"), left{}(), format{}("%cSecureMerkleTrie%r"), injective{}()] - symbol Lblcontract'Unds'Semver{}() : SortSemverContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Semver"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6905,31,6905,75)"), left{}(), format{}("%cSemver%r"), injective{}()] - symbol Lblcontract'Unds'SequencerFeeVault{}() : SortSequencerFeeVaultContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SequencerFeeVault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6928,42,6928,108)"), left{}(), format{}("%cSequencerFeeVault%r"), injective{}()] - symbol Lblcontract'Unds'SignedMath{}() : SortSignedMathContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SignedMath"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6983,35,6983,87)"), left{}(), format{}("%cSignedMath%r"), injective{}()] - symbol Lblcontract'Unds'SimplifiedAddressAliasHelper{}() : SortSimplifiedAddressAliasHelperContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SimplifiedAddressAliasHelper"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6996,53,6996,141)"), left{}(), format{}("%cSimplifiedAddressAliasHelper%r"), injective{}()] - symbol Lblcontract'Unds'SimplifiedBurn{}() : SortSimplifiedBurnContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SimplifiedBurn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7009,39,7009,99)"), left{}(), format{}("%cSimplifiedBurn%r"), injective{}()] - symbol Lblcontract'Unds'SimplifiedBurner{}() : SortSimplifiedBurnerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SimplifiedBurner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7022,41,7022,105)"), left{}(), format{}("%cSimplifiedBurner%r"), injective{}()] - symbol Lblcontract'Unds'SimplifiedOptimismPortal{}() : SortSimplifiedOptimismPortalContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SimplifiedOptimismPortal"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7035,49,7035,129)"), left{}(), format{}("%cSimplifiedOptimismPortal%r"), injective{}()] - symbol Lblcontract'Unds'SimplifiedPortalTest{}() : SortSimplifiedPortalTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SimplifiedPortalTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7064,45,7064,117)"), left{}(), format{}("%cSimplifiedPortalTest%r"), injective{}()] - symbol Lblcontract'Unds'SimplifiedResourceMetering{}() : SortSimplifiedResourceMeteringContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SimplifiedResourceMetering"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7116,51,7116,135)"), left{}(), format{}("%cSimplifiedResourceMetering%r"), injective{}()] - symbol Lblcontract'Unds'StandardBridge{}() : SortStandardBridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_StandardBridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7187,39,7187,99)"), left{}(), format{}("%cStandardBridge%r"), injective{}()] - symbol Lblcontract'Unds'StdAssertions{}() : SortStdAssertionsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_StdAssertions"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7317,38,7317,96)"), left{}(), format{}("%cStdAssertions%r"), injective{}()] - symbol Lblcontract'Unds'StdCheats{}() : SortStdCheatsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_StdCheats"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7348,34,7348,84)"), left{}(), format{}("%cStdCheats%r"), injective{}()] - symbol Lblcontract'Unds'StdCheatsSafe{}() : SortStdCheatsSafeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_StdCheatsSafe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7361,38,7361,96)"), left{}(), format{}("%cStdCheatsSafe%r"), injective{}()] - symbol Lblcontract'Unds'StdUtils{}() : SortStdUtilsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_StdUtils"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7513,33,7513,81)"), left{}(), format{}("%cStdUtils%r"), injective{}()] - symbol Lblcontract'Unds'Strings{}() : SortStringsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Strings"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7526,32,7526,78)"), left{}(), format{}("%cStrings%r"), injective{}()] - symbol Lblcontract'Unds'SystemConfig{}() : SortSystemConfigContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SystemConfig"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7855,37,7855,93)"), left{}(), format{}("%cSystemConfig%r"), injective{}()] - symbol Lblcontract'Unds'Test{}() : SortTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Test"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8025,29,8025,69)"), left{}(), format{}("%cTest%r"), injective{}()] - symbol Lblcontract'Unds'TestBase{}() : SortTestBaseContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_TestBase"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8056,33,8056,81)"), left{}(), format{}("%cTestBase%r"), injective{}()] - symbol Lblcontract'Unds'Types{}() : SortTypesContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Types"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8069,30,8069,72)"), left{}(), format{}("%cTypes%r"), injective{}()] - symbol Lblcontract'Unds'Vm{}() : SortVmContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8082,27,8082,63)"), left{}(), format{}("%cVm%r"), injective{}()] - symbol Lblcontract'Unds'VmSafe{}() : SortVmSafeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_VmSafe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9176,31,9176,75)"), left{}(), format{}("%cVmSafe%r"), injective{}()] - symbol Lblcontract'Unds'WETH9{}() : SortWETH9Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_WETH9"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9823,30,9823,72)"), left{}(), format{}("%cWETH9%r"), injective{}()] - symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("contract_access_field"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("contract_access_hash"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), left{}(), format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("contract_access_index"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), injective{}()] - symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("contract_access_loc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), left{}(), format{}("%c#loc%r %c(%r %1 %c)%r"), function{}()] - symbol Lblcontract'Unds'console{}() : SortConsoleContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_console"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9941,32,9941,78)"), left{}(), format{}("%cconsole%r"), injective{}()] - symbol Lblcontract'Unds'console2{}() : SortConsole2Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_console2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9954,33,9954,81)"), left{}(), format{}("%cconsole2%r"), injective{}()] - symbol Lblcontract'Unds'stdError{}() : SortStdErrorContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_stdError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7374,33,7374,81)"), left{}(), format{}("%cstdError%r"), injective{}()] - symbol Lblcontract'Unds'stdJson{}() : SortStdJsonContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_stdJson"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7461,32,7461,78)"), left{}(), format{}("%cstdJson%r"), injective{}()] - symbol Lblcontract'Unds'stdMath{}() : SortStdMathContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_stdMath"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7474,32,7474,78)"), left{}(), format{}("%cstdMath%r"), injective{}()] - symbol Lblcontract'Unds'stdStorage{}() : SortStdStorageContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_stdStorage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7487,35,7487,87)"), left{}(), format{}("%cstdStorage%r"), injective{}()] - symbol Lblcontract'Unds'stdStorageSafe{}() : SortStdStorageSafeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_stdStorageSafe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7500,39,7500,99)"), left{}(), format{}("%cstdStorageSafe%r"), injective{}()] + symbol Lblcontract'Unds'Address{}() : SortAddressContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Address"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10,32,10,78)"), left{}(), format{}("%cAddress%r"), injective{}()] + symbol Lblcontract'Unds'AddressAliasHelper{}() : SortAddressAliasHelperContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_AddressAliasHelper"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,43,23,111)"), left{}(), format{}("%cAddressAliasHelper%r"), injective{}()] + symbol Lblcontract'Unds'AddressManager{}() : SortAddressManagerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_AddressManager"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,39,36,99)"), left{}(), format{}("%cAddressManager%r"), injective{}()] + symbol Lblcontract'Unds'AddressUpgradeable{}() : SortAddressUpgradeableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_AddressUpgradeable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,43,93,111)"), left{}(), format{}("%cAddressUpgradeable%r"), injective{}()] + symbol Lblcontract'Unds'BaseFeeVault{}() : SortBaseFeeVaultContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_BaseFeeVault"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,37,106,93)"), left{}(), format{}("%cBaseFeeVault%r"), injective{}()] + symbol Lblcontract'Unds'BaseSystemDictator{}() : SortBaseSystemDictatorContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_BaseSystemDictator"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,43,153,111)"), left{}(), format{}("%cBaseSystemDictator%r"), injective{}()] + symbol Lblcontract'Unds'Burn{}() : SortBurnContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Burn"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,29,209,69)"), left{}(), format{}("%cBurn%r"), injective{}()] + symbol Lblcontract'Unds'Burner{}() : SortBurnerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Burner"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(222,31,222,75)"), left{}(), format{}("%cBurner%r"), injective{}()] + symbol Lblcontract'Unds'Bytes{}() : SortBytesContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Bytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,30,235,72)"), left{}(), format{}("%cBytes%r"), injective{}()] + symbol Lblcontract'Unds'CalldataSpec{}() : SortCalldataSpecContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_CalldataSpec"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,37,442,93)"), left{}(), format{}("%cCalldataSpec%r"), injective{}()] + symbol Lblcontract'Unds'CalldataSpecMetered{}() : SortCalldataSpecMeteredContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_CalldataSpecMetered"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,44,248,114)"), left{}(), format{}("%cCalldataSpecMetered%r"), injective{}()] + symbol Lblcontract'Unds'CommonBase{}() : SortCommonBaseContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_CommonBase"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(572,35,572,87)"), left{}(), format{}("%cCommonBase%r"), injective{}()] + symbol Lblcontract'Unds'Components{}() : SortComponentsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Components"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(585,35,585,87)"), left{}(), format{}("%cComponents%r"), injective{}()] + symbol Lblcontract'Unds'Context{}() : SortContextContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Context"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(598,32,598,78)"), left{}(), format{}("%cContext%r"), injective{}()] + symbol Lblcontract'Unds'ContextUpgradeable{}() : SortContextUpgradeableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ContextUpgradeable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(611,43,611,111)"), left{}(), format{}("%cContextUpgradeable%r"), injective{}()] + symbol Lblcontract'Unds'Counters{}() : SortCountersContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Counters"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(624,33,624,81)"), left{}(), format{}("%cCounters%r"), injective{}()] + symbol Lblcontract'Unds'CrossDomainMessenger{}() : SortCrossDomainMessengerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_CrossDomainMessenger"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(637,45,637,117)"), left{}(), format{}("%cCrossDomainMessenger%r"), injective{}()] + symbol Lblcontract'Unds'CrossDomainMessengerLegacySpacer{}() : SortCrossDomainMessengerLegacySpacerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_CrossDomainMessengerLegacySpacer"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,57,821,153)"), left{}(), format{}("%cCrossDomainMessengerLegacySpacer%r"), injective{}()] + symbol Lblcontract'Unds'CrossDomainOwnable{}() : SortCrossDomainOwnableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_CrossDomainOwnable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(834,43,834,111)"), left{}(), format{}("%cCrossDomainOwnable%r"), injective{}()] + symbol Lblcontract'Unds'CrossDomainOwnable2{}() : SortCrossDomainOwnable2Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_CrossDomainOwnable2"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(874,44,874,114)"), left{}(), format{}("%cCrossDomainOwnable2%r"), injective{}()] + symbol Lblcontract'Unds'DSTest{}() : SortDSTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_DSTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7994,31,7994,75)"), left{}(), format{}("%cDSTest%r"), injective{}()] + symbol Lblcontract'Unds'DeployerWhitelist{}() : SortDeployerWhitelistContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_DeployerWhitelist"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,42,914,108)"), left{}(), format{}("%cDeployerWhitelist%r"), injective{}()] + symbol Lblcontract'Unds'ECDSA{}() : SortECDSAContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ECDSA"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(991,30,991,72)"), left{}(), format{}("%cECDSA%r"), injective{}()] + symbol Lblcontract'Unds'EIP712{}() : SortEIP712Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_EIP712"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1004,31,1004,75)"), left{}(), format{}("%cEIP712%r"), injective{}()] + symbol Lblcontract'Unds'ERC165{}() : SortERC165Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ERC165"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1017,31,1017,75)"), left{}(), format{}("%cERC165%r"), injective{}()] + symbol Lblcontract'Unds'ERC165Checker{}() : SortERC165CheckerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ERC165Checker"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1041,38,1041,96)"), left{}(), format{}("%cERC165Checker%r"), injective{}()] + symbol Lblcontract'Unds'ERC20{}() : SortERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ERC20"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1054,30,1054,72)"), left{}(), format{}("%cERC20%r"), injective{}()] + symbol Lblcontract'Unds'ERC20Burnable{}() : SortERC20BurnableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ERC20Burnable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1177,38,1177,96)"), left{}(), format{}("%cERC20Burnable%r"), injective{}()] + symbol Lblcontract'Unds'ERC20Permit{}() : SortERC20PermitContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ERC20Permit"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9967,36,9967,90)"), left{}(), format{}("%cERC20Permit%r"), injective{}()] + symbol Lblcontract'Unds'ERC20Votes{}() : SortERC20VotesContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ERC20Votes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1320,35,1320,87)"), left{}(), format{}("%cERC20Votes%r"), injective{}()] + symbol Lblcontract'Unds'ERC721{}() : SortERC721Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ERC721"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1558,31,1558,75)"), left{}(), format{}("%cERC721%r"), injective{}()] + symbol Lblcontract'Unds'ERC721Bridge{}() : SortERC721BridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ERC721Bridge"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1703,37,1703,93)"), left{}(), format{}("%cERC721Bridge%r"), injective{}()] + symbol Lblcontract'Unds'ERC721Enumerable{}() : SortERC721EnumerableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ERC721Enumerable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1779,41,1779,105)"), left{}(), format{}("%cERC721Enumerable%r"), injective{}()] + symbol Lblcontract'Unds'Encoding{}() : SortEncodingContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Encoding"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1952,33,1952,81)"), left{}(), format{}("%cEncoding%r"), injective{}()] + symbol Lblcontract'Unds'FeeVault{}() : SortFeeVaultContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_FeeVault"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1965,33,1965,81)"), left{}(), format{}("%cFeeVault%r"), injective{}()] + symbol Lblcontract'Unds'FixedPointMathLib{}() : SortFixedPointMathLibContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_FixedPointMathLib"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2004,42,2004,108)"), left{}(), format{}("%cFixedPointMathLib%r"), injective{}()] + symbol Lblcontract'Unds'FreshSystemDictator{}() : SortFreshSystemDictatorContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_FreshSystemDictator"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2017,44,2017,114)"), left{}(), format{}("%cFreshSystemDictator%r"), injective{}()] + symbol Lblcontract'Unds'GasPriceOracle{}() : SortGasPriceOracleContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_GasPriceOracle"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2089,39,2089,99)"), left{}(), format{}("%cGasPriceOracle%r"), injective{}()] + symbol Lblcontract'Unds'GovernanceToken{}() : SortGovernanceTokenContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_GovernanceToken"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2178,40,2178,102)"), left{}(), format{}("%cGovernanceToken%r"), injective{}()] + symbol Lblcontract'Unds'Hashing{}() : SortHashingContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Hashing"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2472,32,2472,78)"), left{}(), format{}("%cHashing%r"), injective{}()] + symbol Lblcontract'Unds'IERC165{}() : SortIERC165Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IERC165"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2485,32,2485,78)"), left{}(), format{}("%cIERC165%r"), injective{}()] + symbol Lblcontract'Unds'IERC20{}() : SortIERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IERC20"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2509,31,2509,75)"), left{}(), format{}("%cIERC20%r"), injective{}()] + symbol Lblcontract'Unds'IERC20Metadata{}() : SortIERC20MetadataContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IERC20Metadata"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2586,39,2586,99)"), left{}(), format{}("%cIERC20Metadata%r"), injective{}()] + symbol Lblcontract'Unds'IERC20Permit{}() : SortIERC20PermitContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IERC20Permit"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10123,37,10123,93)"), left{}(), format{}("%cIERC20Permit%r"), injective{}()] + symbol Lblcontract'Unds'IERC721{}() : SortIERC721Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IERC721"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2687,32,2687,78)"), left{}(), format{}("%cIERC721%r"), injective{}()] + symbol Lblcontract'Unds'IERC721Enumerable{}() : SortIERC721EnumerableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IERC721Enumerable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2807,42,2807,108)"), left{}(), format{}("%cIERC721Enumerable%r"), injective{}()] + symbol Lblcontract'Unds'IERC721Metadata{}() : SortIERC721MetadataContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IERC721Metadata"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2955,40,2955,102)"), left{}(), format{}("%cIERC721Metadata%r"), injective{}()] + symbol Lblcontract'Unds'IERC721Receiver{}() : SortIERC721ReceiverContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IERC721Receiver"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3100,40,3100,102)"), left{}(), format{}("%cIERC721Receiver%r"), injective{}()] + symbol Lblcontract'Unds'IL1ChugSplashDeployer{}() : SortIL1ChugSplashDeployerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IL1ChugSplashDeployer"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3361,46,3361,120)"), left{}(), format{}("%cIL1ChugSplashDeployer%r"), injective{}()] + symbol Lblcontract'Unds'ILegacyMintableERC20{}() : SortILegacyMintableERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ILegacyMintableERC20"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7539,45,7539,117)"), left{}(), format{}("%cILegacyMintableERC20%r"), injective{}()] + symbol Lblcontract'Unds'IOptimismMintableERC20{}() : SortIOptimismMintableERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IOptimismMintableERC20"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7584,47,7584,123)"), left{}(), format{}("%cIOptimismMintableERC20%r"), injective{}()] + symbol Lblcontract'Unds'IOptimismMintableERC721{}() : SortIOptimismMintableERC721Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IOptimismMintableERC721"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7637,48,7637,126)"), left{}(), format{}("%cIOptimismMintableERC721%r"), injective{}()] + symbol Lblcontract'Unds'IStaticERC1967Proxy{}() : SortIStaticERC1967ProxyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IStaticERC1967Proxy"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6495,44,6495,114)"), left{}(), format{}("%cIStaticERC1967Proxy%r"), injective{}()] + symbol Lblcontract'Unds'IStaticL1ChugSplashProxy{}() : SortIStaticL1ChugSplashProxyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IStaticL1ChugSplashProxy"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6526,49,6526,129)"), left{}(), format{}("%cIStaticL1ChugSplashProxy%r"), injective{}()] + symbol Lblcontract'Unds'IVotes{}() : SortIVotesContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_IVotes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3128,31,3128,75)"), left{}(), format{}("%cIVotes%r"), injective{}()] + symbol Lblcontract'Unds'Initializable{}() : SortInitializableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Initializable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3205,38,3205,96)"), left{}(), format{}("%cInitializable%r"), injective{}()] + symbol Lblcontract'Unds'L1Block{}() : SortL1BlockContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L1Block"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3218,32,3218,78)"), left{}(), format{}("%cL1Block%r"), injective{}()] + symbol Lblcontract'Unds'L1BlockNumber{}() : SortL1BlockNumberContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L1BlockNumber"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3330,38,3330,96)"), left{}(), format{}("%cL1BlockNumber%r"), injective{}()] + symbol Lblcontract'Unds'L1ChugSplashProxy{}() : SortL1ChugSplashProxyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L1ChugSplashProxy"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3384,42,3384,108)"), left{}(), format{}("%cL1ChugSplashProxy%r"), injective{}()] + symbol Lblcontract'Unds'L1CrossDomainMessenger{}() : SortL1CrossDomainMessengerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L1CrossDomainMessenger"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3444,47,3444,123)"), left{}(), format{}("%cL1CrossDomainMessenger%r"), injective{}()] + symbol Lblcontract'Unds'L1ERC721Bridge{}() : SortL1ERC721BridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L1ERC721Bridge"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3653,39,3653,99)"), left{}(), format{}("%cL1ERC721Bridge%r"), injective{}()] + symbol Lblcontract'Unds'L1FeeVault{}() : SortL1FeeVaultContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L1FeeVault"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3764,35,3764,87)"), left{}(), format{}("%cL1FeeVault%r"), injective{}()] + symbol Lblcontract'Unds'L1StandardBridge{}() : SortL1StandardBridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L1StandardBridge"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3811,41,3811,105)"), left{}(), format{}("%cL1StandardBridge%r"), injective{}()] + symbol Lblcontract'Unds'L2CrossDomainMessenger{}() : SortL2CrossDomainMessengerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L2CrossDomainMessenger"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4037,47,4037,123)"), left{}(), format{}("%cL2CrossDomainMessenger%r"), injective{}()] + symbol Lblcontract'Unds'L2ERC721Bridge{}() : SortL2ERC721BridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L2ERC721Bridge"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4245,39,4245,99)"), left{}(), format{}("%cL2ERC721Bridge%r"), injective{}()] + symbol Lblcontract'Unds'L2OutputOracle{}() : SortL2OutputOracleContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L2OutputOracle"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4344,39,4344,99)"), left{}(), format{}("%cL2OutputOracle%r"), injective{}()] + symbol Lblcontract'Unds'L2StandardBridge{}() : SortL2StandardBridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L2StandardBridge"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4513,41,4513,105)"), left{}(), format{}("%cL2StandardBridge%r"), injective{}()] + symbol Lblcontract'Unds'L2ToL1MessagePasser{}() : SortL2ToL1MessagePasserContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_L2ToL1MessagePasser"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4693,44,4693,114)"), left{}(), format{}("%cL2ToL1MessagePasser%r"), injective{}()] + symbol Lblcontract'Unds'LegacyERC20ETH{}() : SortLegacyERC20ETHContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_LegacyERC20ETH"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4753,39,4753,99)"), left{}(), format{}("%cLegacyERC20ETH%r"), injective{}()] + symbol Lblcontract'Unds'LegacyMessagePasser{}() : SortLegacyMessagePasserContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_LegacyMessagePasser"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4939,44,4939,114)"), left{}(), format{}("%cLegacyMessagePasser%r"), injective{}()] + symbol Lblcontract'Unds'Machinery{}() : SortMachineryContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Machinery"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4980,34,4980,84)"), left{}(), format{}("%cMachinery%r"), injective{}()] + symbol Lblcontract'Unds'Math{}() : SortMathContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Math"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5070,29,5070,69)"), left{}(), format{}("%cMath%r"), injective{}()] + symbol Lblcontract'Unds'MerkleTrie{}() : SortMerkleTrieContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_MerkleTrie"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5083,35,5083,87)"), left{}(), format{}("%cMerkleTrie%r"), injective{}()] + symbol Lblcontract'Unds'Metered{}() : SortMeteredContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Metered"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5096,32,5096,78)"), left{}(), format{}("%cMetered%r"), injective{}()] + symbol Lblcontract'Unds'MigrationSystemDictator{}() : SortMigrationSystemDictatorContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_MigrationSystemDictator"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5324,48,5324,126)"), left{}(), format{}("%cMigrationSystemDictator%r"), injective{}()] + symbol Lblcontract'Unds'OptimismMintableERC20{}() : SortOptimismMintableERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_OptimismMintableERC20"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5428,46,5428,120)"), left{}(), format{}("%cOptimismMintableERC20%r"), injective{}()] + symbol Lblcontract'Unds'OptimismMintableERC20Factory{}() : SortOptimismMintableERC20FactoryContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_OptimismMintableERC20Factory"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5614,53,5614,141)"), left{}(), format{}("%cOptimismMintableERC20Factory%r"), injective{}()] + symbol Lblcontract'Unds'OptimismMintableERC721{}() : SortOptimismMintableERC721Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_OptimismMintableERC721"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5671,47,5671,123)"), left{}(), format{}("%cOptimismMintableERC721%r"), injective{}()] + symbol Lblcontract'Unds'OptimismMintableERC721Factory{}() : SortOptimismMintableERC721FactoryContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_OptimismMintableERC721Factory"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5922,54,5922,144)"), left{}(), format{}("%cOptimismMintableERC721Factory%r"), injective{}()] + symbol Lblcontract'Unds'OptimismPortal{}() : SortOptimismPortalContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_OptimismPortal"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5995,39,5995,99)"), left{}(), format{}("%cOptimismPortal%r"), injective{}()] + symbol Lblcontract'Unds'OptmimismPortalTest{}() : SortOptmimismPortalTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_OptmimismPortalTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6165,44,6165,114)"), left{}(), format{}("%cOptmimismPortalTest%r"), injective{}()] + symbol Lblcontract'Unds'Ownable{}() : SortOwnableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Ownable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6288,32,6288,78)"), left{}(), format{}("%cOwnable%r"), injective{}()] + symbol Lblcontract'Unds'OwnableUpgradeable{}() : SortOwnableUpgradeableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_OwnableUpgradeable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6328,43,6328,111)"), left{}(), format{}("%cOwnableUpgradeable%r"), injective{}()] + symbol Lblcontract'Unds'PausableUpgradeable{}() : SortPausableUpgradeableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_PausableUpgradeable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6368,44,6368,114)"), left{}(), format{}("%cPausableUpgradeable%r"), injective{}()] + symbol Lblcontract'Unds'PortalSender{}() : SortPortalSenderContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_PortalSender"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6391,37,6391,93)"), left{}(), format{}("%cPortalSender%r"), injective{}()] + symbol Lblcontract'Unds'Predeploys{}() : SortPredeploysContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Predeploys"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6422,35,6422,87)"), left{}(), format{}("%cPredeploys%r"), injective{}()] + symbol Lblcontract'Unds'Proxy{}() : SortProxyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Proxy"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6435,30,6435,72)"), left{}(), format{}("%cProxy%r"), injective{}()] + symbol Lblcontract'Unds'ProxyAdmin{}() : SortProxyAdminContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ProxyAdmin"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6557,35,6557,87)"), left{}(), format{}("%cProxyAdmin%r"), injective{}()] + symbol Lblcontract'Unds'RLPReader{}() : SortRLPReaderContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_RLPReader"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6730,34,6730,84)"), left{}(), format{}("%cRLPReader%r"), injective{}()] + symbol Lblcontract'Unds'RLPWriter{}() : SortRLPWriterContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_RLPWriter"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6743,34,6743,84)"), left{}(), format{}("%cRLPWriter%r"), injective{}()] + symbol Lblcontract'Unds'ReentrancyGuardUpgradeable{}() : SortReentrancyGuardUpgradeableContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ReentrancyGuardUpgradeable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6756,51,6756,135)"), left{}(), format{}("%cReentrancyGuardUpgradeable%r"), injective{}()] + symbol Lblcontract'Unds'ResolvedDelegateProxy{}() : SortResolvedDelegateProxyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ResolvedDelegateProxy"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6769,46,6769,120)"), left{}(), format{}("%cResolvedDelegateProxy%r"), injective{}()] + symbol Lblcontract'Unds'ResourceMetering{}() : SortResourceMeteringContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ResourceMetering"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6782,41,6782,105)"), left{}(), format{}("%cResourceMetering%r"), injective{}()] + symbol Lblcontract'Unds'SafeCall{}() : SortSafeCallContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SafeCall"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6853,33,6853,81)"), left{}(), format{}("%cSafeCall%r"), injective{}()] + symbol Lblcontract'Unds'SafeCast{}() : SortSafeCastContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SafeCast"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6866,33,6866,81)"), left{}(), format{}("%cSafeCast%r"), injective{}()] + symbol Lblcontract'Unds'SafeERC20{}() : SortSafeERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SafeERC20"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6879,34,6879,84)"), left{}(), format{}("%cSafeERC20%r"), injective{}()] + symbol Lblcontract'Unds'SecureMerkleTrie{}() : SortSecureMerkleTrieContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SecureMerkleTrie"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6892,41,6892,105)"), left{}(), format{}("%cSecureMerkleTrie%r"), injective{}()] + symbol Lblcontract'Unds'Semver{}() : SortSemverContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Semver"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6905,31,6905,75)"), left{}(), format{}("%cSemver%r"), injective{}()] + symbol Lblcontract'Unds'SequencerFeeVault{}() : SortSequencerFeeVaultContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SequencerFeeVault"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6928,42,6928,108)"), left{}(), format{}("%cSequencerFeeVault%r"), injective{}()] + symbol Lblcontract'Unds'SignedMath{}() : SortSignedMathContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SignedMath"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6983,35,6983,87)"), left{}(), format{}("%cSignedMath%r"), injective{}()] + symbol Lblcontract'Unds'SimplifiedAddressAliasHelper{}() : SortSimplifiedAddressAliasHelperContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SimplifiedAddressAliasHelper"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6996,53,6996,141)"), left{}(), format{}("%cSimplifiedAddressAliasHelper%r"), injective{}()] + symbol Lblcontract'Unds'SimplifiedBurn{}() : SortSimplifiedBurnContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SimplifiedBurn"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7009,39,7009,99)"), left{}(), format{}("%cSimplifiedBurn%r"), injective{}()] + symbol Lblcontract'Unds'SimplifiedBurner{}() : SortSimplifiedBurnerContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SimplifiedBurner"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7022,41,7022,105)"), left{}(), format{}("%cSimplifiedBurner%r"), injective{}()] + symbol Lblcontract'Unds'SimplifiedOptimismPortal{}() : SortSimplifiedOptimismPortalContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SimplifiedOptimismPortal"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7035,49,7035,129)"), left{}(), format{}("%cSimplifiedOptimismPortal%r"), injective{}()] + symbol Lblcontract'Unds'SimplifiedPortalTest{}() : SortSimplifiedPortalTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SimplifiedPortalTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7064,45,7064,117)"), left{}(), format{}("%cSimplifiedPortalTest%r"), injective{}()] + symbol Lblcontract'Unds'SimplifiedResourceMetering{}() : SortSimplifiedResourceMeteringContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SimplifiedResourceMetering"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7116,51,7116,135)"), left{}(), format{}("%cSimplifiedResourceMetering%r"), injective{}()] + symbol Lblcontract'Unds'StandardBridge{}() : SortStandardBridgeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_StandardBridge"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7187,39,7187,99)"), left{}(), format{}("%cStandardBridge%r"), injective{}()] + symbol Lblcontract'Unds'StdAssertions{}() : SortStdAssertionsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_StdAssertions"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7317,38,7317,96)"), left{}(), format{}("%cStdAssertions%r"), injective{}()] + symbol Lblcontract'Unds'StdCheats{}() : SortStdCheatsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_StdCheats"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7348,34,7348,84)"), left{}(), format{}("%cStdCheats%r"), injective{}()] + symbol Lblcontract'Unds'StdCheatsSafe{}() : SortStdCheatsSafeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_StdCheatsSafe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7361,38,7361,96)"), left{}(), format{}("%cStdCheatsSafe%r"), injective{}()] + symbol Lblcontract'Unds'StdUtils{}() : SortStdUtilsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_StdUtils"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7513,33,7513,81)"), left{}(), format{}("%cStdUtils%r"), injective{}()] + symbol Lblcontract'Unds'Strings{}() : SortStringsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Strings"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7526,32,7526,78)"), left{}(), format{}("%cStrings%r"), injective{}()] + symbol Lblcontract'Unds'SystemConfig{}() : SortSystemConfigContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SystemConfig"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7855,37,7855,93)"), left{}(), format{}("%cSystemConfig%r"), injective{}()] + symbol Lblcontract'Unds'Test{}() : SortTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Test"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8025,29,8025,69)"), left{}(), format{}("%cTest%r"), injective{}()] + symbol Lblcontract'Unds'TestBase{}() : SortTestBaseContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_TestBase"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8056,33,8056,81)"), left{}(), format{}("%cTestBase%r"), injective{}()] + symbol Lblcontract'Unds'Types{}() : SortTypesContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Types"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8069,30,8069,72)"), left{}(), format{}("%cTypes%r"), injective{}()] + symbol Lblcontract'Unds'Vm{}() : SortVmContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Vm"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8082,27,8082,63)"), left{}(), format{}("%cVm%r"), injective{}()] + symbol Lblcontract'Unds'VmSafe{}() : SortVmSafeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_VmSafe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9176,31,9176,75)"), left{}(), format{}("%cVmSafe%r"), injective{}()] + symbol Lblcontract'Unds'WETH9{}() : SortWETH9Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_WETH9"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9823,30,9823,72)"), left{}(), format{}("%cWETH9%r"), injective{}()] + symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}("contract_access_field"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}("contract_access_hash"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), left{}(), format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] + symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}("contract_access_index"), priorities{}(), right{}(), terminals{}("0101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), injective{}()] + symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}("contract_access_loc"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), left{}(), format{}("%c#loc%r %c(%r %1 %c)%r"), function{}()] + symbol Lblcontract'Unds'console{}() : SortConsoleContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_console"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9941,32,9941,78)"), left{}(), format{}("%cconsole%r"), injective{}()] + symbol Lblcontract'Unds'console2{}() : SortConsole2Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_console2"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9954,33,9954,81)"), left{}(), format{}("%cconsole2%r"), injective{}()] + symbol Lblcontract'Unds'stdError{}() : SortStdErrorContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_stdError"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7374,33,7374,81)"), left{}(), format{}("%cstdError%r"), injective{}()] + symbol Lblcontract'Unds'stdJson{}() : SortStdJsonContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_stdJson"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7461,32,7461,78)"), left{}(), format{}("%cstdJson%r"), injective{}()] + symbol Lblcontract'Unds'stdMath{}() : SortStdMathContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_stdMath"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7474,32,7474,78)"), left{}(), format{}("%cstdMath%r"), injective{}()] + symbol Lblcontract'Unds'stdStorage{}() : SortStdStorageContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_stdStorage"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7487,35,7487,87)"), left{}(), format{}("%cstdStorage%r"), injective{}()] + symbol Lblcontract'Unds'stdStorageSafe{}() : SortStdStorageSafeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_stdStorageSafe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7500,39,7500,99)"), left{}(), format{}("%cstdStorageSafe%r"), injective{}()] hooked-symbol LblcountAllOccurrences'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("110101"), hook{}("STRING.countAllOccurrences"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1652,18,1652,146)"), left{}(), format{}("%ccountAllOccurrences%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LbldecodeBytes'LParUndsCommUndsRParUnds'BYTES-STRING-ENCODE'Unds'String'Unds'String'Unds'Bytes{}(SortString{}, SortBytes{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("decodeBytes"), hook{}("BYTES.decodeBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1816,23,1816,109)"), left{}(), format{}("%cdecodeBytes%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LbldirectionalityChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("directionalityChar"), hook{}("STRING.directionality"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1680,21,1680,87)"), left{}(), format{}("%cdirectionalityChar%r %c(%r %1 %c)%r"), function{}()] @@ -1642,13 +1642,13 @@ module FOUNDRY-MAIN hooked-symbol LblfillList'LParUndsCommUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("fillList"), hook{}("LIST.fill"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(803,19,803,100)"), left{}(), format{}("%cfillList%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] hooked-symbol LblfindChar'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findChar"), hook{}("STRING.findChar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1576,18,1576,116)"), left{}(), format{}("%cfindChar%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblfindString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findString"), hook{}("STRING.find"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1565,18,1565,111)"), left{}(), format{}("%cfindString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol Lblfoundry'Unds'assume{}(SortBool{}) : SortKItem{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/foundry.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("foundry_assume"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(218,22,218,71)"), left{}(), format{}("%c#assume%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblfoundry'Unds'success{}(SortStatusCode{}, SortInt{}, SortBool{}, SortBool{}, SortBool{}, SortBool{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/foundry.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("foundry_success"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(139,21,139,145)"), left{}(), format{}("%cfoundry_success%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), function{}()] + symbol Lblfoundry'Unds'assume{}(SortBool{}) : SortKItem{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/foundry.md)"), symbol'Kywd'{}("foundry_assume"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(218,22,218,71)"), left{}(), format{}("%c#assume%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblfoundry'Unds'success{}(SortStatusCode{}, SortInt{}, SortBool{}, SortBool{}, SortBool{}, SortBool{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/foundry.md)"), symbol'Kywd'{}("foundry_success"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(139,21,139,145)"), left{}(), format{}("%cfoundry_success%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), function{}()] symbol LblfreshInt'LParUndsRParUnds'INT'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), freshGenerator{}(), klabel{}("freshInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1253,18,1253,77)"), left{}(), format{}("%cfreshInt%r %c(%r %1 %c)%r"), private{}(), function{}()] symbol LblgetBloomFilterBit'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'ByteArray'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("getBloomFilterBit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,20,729,64)"), left{}(), format{}("%cgetBloomFilterBit%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblgetExitCode{}(SortGeneratedTopCell{}) : SortInt{} [priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cgetExitCode%r %c(%r %1 %c)%r"), function{}()] symbol LblgetGeneratedCounterCell{}(SortGeneratedTopCell{}) : SortGeneratedCounterCell{} [priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cgetGeneratedCounterCell%r %c(%r %1 %c)%r"), function{}()] - symbol LblinfGas{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/infinite-gas.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("infGas"), terminals{}("1101"), klabel{}("infGas"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,20,75,105)"), no-evaluators{}(), left{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), function{}()] + symbol LblinfGas{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/infinite-gas.md)"), total{}(), symbol'Kywd'{}("infGas"), priorities{}(), right{}(), smtlib{}("infGas"), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,20,75,105)"), no-evaluators{}(), left{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), function{}()] symbol LblinitAccessedAccountsCell{}() : SortAccessedAccountsCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitAccessedAccountsCell%r"), function{}()] symbol LblinitAccessedStorageCell{}() : SortAccessedStorageCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitAccessedStorageCell%r"), function{}()] symbol LblinitAccountCell{}() : SortAccountCellMap{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitAccountCell%r"), function{}()] @@ -2290,7 +2290,7 @@ module FOUNDRY-MAIN hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), klabel{}("lengthBytes"), hook{}("BYTES.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1970,18,1970,95)"), left{}(), format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthString"), hook{}("STRING.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1530,18,1530,80)"), left{}(), format{}("%clengthString%r %c(%r %1 %c)%r"), function{}()] symbol LbllistAsByteArrays'LParUndsRParUnds'EVM'Unds'List'Unds'List{}(SortList{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("listAsByteArrays"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(710,21,710,54)"), left{}(), format{}("%clistAsByteArrays%r %c(%r %1 %c)%r"), function{}()] - symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("littleEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1843,25,1843,65)"), left{}(), format{}("%cLE%r"), injective{}()] + symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("littleEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1843,25,1843,65)"), left{}(), format{}("%cLE%r"), injective{}()] symbol Lbllog256Int'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("log256Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,20,79,48)"), left{}(), format{}("%clog256Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbllog2Int'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("log2Int"), hook{}("INT.log2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1090,18,1090,75)"), left{}(), format{}("%clog2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblmakeList'LParUndsCommUndsRParUnds'LIST'Unds'List'Unds'Int'Unds'KItem{}(SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("makeList"), hook{}("LIST.make"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(784,19,784,82)"), left{}(), format{}("%cmakeList%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -2332,917 +2332,917 @@ module FOUNDRY-MAIN symbol LblmaxUInt88'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,20,123,45)"), left{}(), format{}("%cmaxUInt88%r"), alias'Kywd'{}(), injective{}()] symbol LblmaxUInt8'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,20,103,45)"), left{}(), format{}("%cmaxUInt8%r"), alias'Kywd'{}(), injective{}()] symbol LblmaxUInt96'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,20,125,45)"), left{}(), format{}("%cmaxUInt96%r"), alias'Kywd'{}(), injective{}()] - symbol Lblmethod'Unds'AddressManager{}(SortAddressManagerContract{}, SortAddressManagerMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_AddressManager"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,26,41,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'AddressManager'Unds'getAddress{}(SortString{}) : SortAddressManagerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_AddressManager_getAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,37,43,117)"), left{}(), format{}("%cgetAddress%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddressManager'Unds'owner{}() : SortAddressManagerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddressManager_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,37,45,100)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddressManager'Unds'renounceOwnership{}() : SortAddressManagerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddressManager_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,37,47,124)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddressManager'Unds'setAddress{}(SortString{}, SortInt{}) : SortAddressManagerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_AddressManager_setAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,37,49,125)"), left{}(), format{}("%csetAddress%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddressManager'Unds'transferOwnership{}(SortInt{}) : SortAddressManagerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_AddressManager_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,37,51,128)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'BaseFeeVault{}(SortBaseFeeVaultContract{}, SortBaseFeeVaultMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_BaseFeeVault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,26,111,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'BaseFeeVault'Unds'MIN'Unds'WITHDRAWAL'Unds'AMOUNT{}() : SortBaseFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BaseFeeVault_MIN_WITHDRAWAL_AMOUNT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,35,113,128)"), left{}(), format{}("%cMIN_WITHDRAWAL_AMOUNT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BaseFeeVault'Unds'RECIPIENT{}() : SortBaseFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BaseFeeVault_RECIPIENT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,35,115,104)"), left{}(), format{}("%cRECIPIENT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BaseFeeVault'Unds'version{}() : SortBaseFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BaseFeeVault_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,35,117,100)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BaseFeeVault'Unds'withdraw{}() : SortBaseFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BaseFeeVault_withdraw"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,35,119,102)"), left{}(), format{}("%cwithdraw%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BaseSystemDictator{}(SortBaseSystemDictatorContract{}, SortBaseSystemDictatorMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_BaseSystemDictator"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(158,26,158,139)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'BaseSystemDictator'Unds'config{}() : SortBaseSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BaseSystemDictator_config"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(160,41,160,110)"), left{}(), format{}("%cconfig%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BaseSystemDictator'Unds'currentStep{}() : SortBaseSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BaseSystemDictator_currentStep"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(162,41,162,120)"), left{}(), format{}("%ccurrentStep%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BaseSystemDictator'Unds'owner{}() : SortBaseSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BaseSystemDictator_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,41,164,108)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BaseSystemDictator'Unds'renounceOwnership{}() : SortBaseSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BaseSystemDictator_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(166,41,166,132)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BaseSystemDictator'Unds'transferOwnership{}(SortInt{}) : SortBaseSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BaseSystemDictator_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,41,168,136)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpec{}(SortCalldataSpecContract{}, SortCalldataSpecMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_CalldataSpec"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(447,26,447,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'CalldataSpecMetered{}(SortCalldataSpecMeteredContract{}, SortCalldataSpecMeteredMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_CalldataSpecMetered"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(253,26,253,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'BASE'Unds'FEE'Unds'MAX'Unds'CHANGE'Unds'DENOMINATOR{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_BASE_FEE_MAX_CHANGE_DENOMINATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(255,42,255,162)"), left{}(), format{}("%cBASE_FEE_MAX_CHANGE_DENOMINATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'ELASTICITY'Unds'MULTIPLIER{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_ELASTICITY_MULTIPLIER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,42,257,142)"), left{}(), format{}("%cELASTICITY_MULTIPLIER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'INITIAL'Unds'BASE'Unds'FEE{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_INITIAL_BASE_FEE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,42,259,132)"), left{}(), format{}("%cINITIAL_BASE_FEE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'IS'Unds'TEST{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(261,42,261,114)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_MAX_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(263,42,263,136)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'MINIMUM'Unds'BASE'Unds'FEE{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_MINIMUM_BASE_FEE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(265,42,265,132)"), left{}(), format{}("%cMINIMUM_BASE_FEE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'TARGET'Unds'RESOURCE'Unds'LIMIT{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_TARGET_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(267,42,267,142)"), left{}(), format{}("%cTARGET_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_CalldataSpecMetered_depositTransaction"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(269,42,269,178)"), left{}(), format{}("%cdepositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'failed{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,42,271,112)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'init{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_init"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(273,42,273,108)"), left{}(), format{}("%cinit%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'params{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_params"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(275,42,275,112)"), left{}(), format{}("%cparams%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'setUp{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpecMetered_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(277,42,277,110)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse'Unds'sender'Unds'Equals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_CalldataSpecMetered_test_depositTransaction_emit_creationFalse_sender_Equals_origin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(279,42,279,284)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse_sender_Equals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse'Unds'sender'Unds'NotEquals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_CalldataSpecMetered_test_depositTransaction_emit_creationFalse_sender_NotEquals_origin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,42,281,290)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse_sender_NotEquals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue'Unds'sender'Unds'Equals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_CalldataSpecMetered_test_depositTransaction_emit_creationTrue_sender_Equals_origin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(283,42,283,282)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue_sender_Equals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue'Unds'sender'Unds'NotEquals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_CalldataSpecMetered_test_depositTransaction_emit_creationTrue_sender_NotEquals_origin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(285,42,285,288)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue_sender_NotEquals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpecMetered'Unds'test'Unds'depositTransaction'Unds'revert{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_CalldataSpecMetered_test_depositTransaction_revert"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(287,42,287,194)"), left{}(), format{}("%ctest_depositTransaction_revert%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpec'Unds'IS'Unds'TEST{}() : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpec_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(449,35,449,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpec'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_CalldataSpec_depositTransaction"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(451,35,451,164)"), left{}(), format{}("%cdepositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpec'Unds'failed{}() : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpec_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(453,35,453,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpec'Unds'setUp{}() : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CalldataSpec_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(455,35,455,96)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpec'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse'Unds'sender'Unds'Equals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_CalldataSpec_test_depositTransaction_emit_creationFalse_sender_Equals_origin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(457,35,457,270)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse_sender_Equals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpec'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse'Unds'sender'Unds'NotEquals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_CalldataSpec_test_depositTransaction_emit_creationFalse_sender_NotEquals_origin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(459,35,459,276)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse_sender_NotEquals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpec'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue'Unds'sender'Unds'Equals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_CalldataSpec_test_depositTransaction_emit_creationTrue_sender_Equals_origin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(461,35,461,268)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue_sender_Equals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpec'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue'Unds'sender'Unds'NotEquals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_CalldataSpec_test_depositTransaction_emit_creationTrue_sender_NotEquals_origin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,35,463,274)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue_sender_NotEquals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CalldataSpec'Unds'test'Unds'depositTransaction'Unds'revert{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_CalldataSpec_test_depositTransaction_revert"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(465,35,465,180)"), left{}(), format{}("%ctest_depositTransaction_revert%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger{}(SortCrossDomainMessengerContract{}, SortCrossDomainMessengerMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_CrossDomainMessenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(642,26,642,145)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'MESSAGE'Unds'VERSION{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_MESSAGE_VERSION"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(644,43,644,132)"), left{}(), format{}("%cMESSAGE_VERSION%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CALLDATA'Unds'OVERHEAD{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_MIN_GAS_CALLDATA_OVERHEAD"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(646,43,646,152)"), left{}(), format{}("%cMIN_GAS_CALLDATA_OVERHEAD%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CONSTANT'Unds'OVERHEAD{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_MIN_GAS_CONSTANT_OVERHEAD"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(648,43,648,152)"), left{}(), format{}("%cMIN_GAS_CONSTANT_OVERHEAD%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'DENOMINATOR{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(650,43,650,174)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'NUMERATOR{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(652,43,652,170)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'OTHER'Unds'MESSENGER{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_OTHER_MESSENGER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(654,43,654,132)"), left{}(), format{}("%cOTHER_MESSENGER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'baseGas{}(SortBytes{}, SortInt{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_CrossDomainMessenger_baseGas"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(656,43,656,134)"), left{}(), format{}("%cbaseGas%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'messageNonce{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_messageNonce"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(658,43,658,126)"), left{}(), format{}("%cmessageNonce%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'owner{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,43,660,112)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'pause{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_pause"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(662,43,662,112)"), left{}(), format{}("%cpause%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'paused{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_paused"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(664,43,664,114)"), left{}(), format{}("%cpaused%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'receivedMessages{}(SortInt{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_CrossDomainMessenger_receivedMessages"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(666,43,666,138)"), left{}(), format{}("%creceivedMessages%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'relayMessage{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_CrossDomainMessenger_relayMessage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(668,43,668,176)"), left{}(), format{}("%crelayMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'renounceOwnership{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(670,43,670,136)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'sendMessage{}(SortInt{}, SortBytes{}, SortInt{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_CrossDomainMessenger_sendMessage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(672,43,672,150)"), left{}(), format{}("%csendMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'successfulMessages{}(SortInt{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_CrossDomainMessenger_successfulMessages"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(674,43,674,142)"), left{}(), format{}("%csuccessfulMessages%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'transferOwnership{}(SortInt{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_CrossDomainMessenger_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(676,43,676,140)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'unpause{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_unpause"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,43,678,116)"), left{}(), format{}("%cunpause%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainMessenger'Unds'xDomainMessageSender{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainMessenger_xDomainMessageSender"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(680,43,680,142)"), left{}(), format{}("%cxDomainMessageSender%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainOwnable{}(SortCrossDomainOwnableContract{}, SortCrossDomainOwnableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_CrossDomainOwnable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(839,26,839,139)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'CrossDomainOwnable2{}(SortCrossDomainOwnable2Contract{}, SortCrossDomainOwnable2Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_CrossDomainOwnable2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(879,26,879,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'CrossDomainOwnable2'Unds'owner{}() : SortCrossDomainOwnable2Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainOwnable2_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(881,42,881,110)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainOwnable2'Unds'renounceOwnership{}() : SortCrossDomainOwnable2Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainOwnable2_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(883,42,883,134)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainOwnable2'Unds'transferOwnership{}(SortInt{}) : SortCrossDomainOwnable2Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_CrossDomainOwnable2_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,42,885,138)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainOwnable'Unds'owner{}() : SortCrossDomainOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainOwnable_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(841,41,841,108)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainOwnable'Unds'renounceOwnership{}() : SortCrossDomainOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_CrossDomainOwnable_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(843,41,843,132)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'CrossDomainOwnable'Unds'transferOwnership{}(SortInt{}) : SortCrossDomainOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_CrossDomainOwnable_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(845,41,845,136)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'DSTest{}(SortDSTestContract{}, SortDSTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_DSTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7999,26,7999,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'DSTest'Unds'IS'Unds'TEST{}() : SortDSTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DSTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8001,29,8001,88)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DSTest'Unds'failed{}() : SortDSTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DSTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8003,29,8003,86)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DeployerWhitelist{}(SortDeployerWhitelistContract{}, SortDeployerWhitelistMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_DeployerWhitelist"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(919,26,919,136)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'DeployerWhitelist'Unds'enableArbitraryContractDeployment{}() : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DeployerWhitelist_enableArbitraryContractDeployment"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(921,40,921,162)"), left{}(), format{}("%cenableArbitraryContractDeployment%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DeployerWhitelist'Unds'isDeployerAllowed{}(SortInt{}) : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_DeployerWhitelist_isDeployerAllowed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(923,40,923,134)"), left{}(), format{}("%cisDeployerAllowed%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'DeployerWhitelist'Unds'owner{}() : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DeployerWhitelist_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(925,40,925,106)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DeployerWhitelist'Unds'setOwner{}(SortInt{}) : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_DeployerWhitelist_setOwner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(927,40,927,116)"), left{}(), format{}("%csetOwner%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'DeployerWhitelist'Unds'setWhitelistedDeployer{}(SortInt{}, SortInt{}) : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_DeployerWhitelist_setWhitelistedDeployer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,40,929,152)"), left{}(), format{}("%csetWhitelistedDeployer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'DeployerWhitelist'Unds'version{}() : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DeployerWhitelist_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,40,931,110)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DeployerWhitelist'Unds'whitelist{}(SortInt{}) : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_DeployerWhitelist_whitelist"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,40,933,118)"), left{}(), format{}("%cwhitelist%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC165{}(SortERC165Contract{}, SortERC165Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ERC165"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,26,1022,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ERC165'Unds'supportsInterface{}(SortInt{}) : SortERC165Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC165_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1024,29,1024,112)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20{}(SortERC20Contract{}, SortERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1059,26,1059,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ERC20Burnable{}(SortERC20BurnableContract{}, SortERC20BurnableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ERC20Burnable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1182,26,1182,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'allowance{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Burnable_allowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1184,36,1184,118)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'approve{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Burnable_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,36,1186,114)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'balanceOf{}(SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Burnable_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1188,36,1188,110)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'burn{}(SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Burnable_burn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1190,36,1190,100)"), left{}(), format{}("%cburn%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'burnFrom{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Burnable_burnFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1192,36,1192,116)"), left{}(), format{}("%cburnFrom%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'decimals{}() : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Burnable_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1194,36,1194,104)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Burnable_decreaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1196,36,1196,134)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Burnable_increaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1198,36,1198,134)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'name{}() : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Burnable_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1200,36,1200,96)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'symbol{}() : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Burnable_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1202,36,1202,100)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'totalSupply{}() : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Burnable_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1204,36,1204,110)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'transfer{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Burnable_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,36,1206,116)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Burnable'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_ERC20Burnable_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1208,36,1208,132)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit{}(SortERC20PermitContract{}, SortERC20PermitMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ERC20Permit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9972,26,9972,118)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'DOMAIN'Unds'SEPARATOR{}() : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Permit_DOMAIN_SEPARATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9974,34,9974,116)"), left{}(), format{}("%cDOMAIN_SEPARATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'allowance{}(SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Permit_allowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9976,34,9976,114)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'approve{}(SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Permit_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9978,34,9978,110)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'balanceOf{}(SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Permit_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9980,34,9980,106)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'decimals{}() : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Permit_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9982,34,9982,100)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Permit_decreaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9984,34,9984,130)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Permit_increaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9986,34,9986,130)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'name{}() : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Permit_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9988,34,9988,92)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'nonces{}(SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Permit_nonces"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9990,34,9990,100)"), left{}(), format{}("%cnonces%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'permit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_ERC20Permit_permit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9992,34,9992,148)"), left{}(), format{}("%cpermit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'symbol{}() : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Permit_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9994,34,9994,96)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'totalSupply{}() : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Permit_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9996,34,9996,106)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'transfer{}(SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Permit_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9998,34,9998,112)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Permit'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_ERC20Permit_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10000,34,10000,128)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes{}(SortERC20VotesContract{}, SortERC20VotesMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ERC20Votes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1325,26,1325,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'DOMAIN'Unds'SEPARATOR{}() : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Votes_DOMAIN_SEPARATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1327,33,1327,114)"), left{}(), format{}("%cDOMAIN_SEPARATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'allowance{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Votes_allowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1329,33,1329,112)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'approve{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Votes_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1331,33,1331,108)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'balanceOf{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Votes_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1333,33,1333,104)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'checkpoints{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Votes_checkpoints"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1335,33,1335,116)"), left{}(), format{}("%ccheckpoints%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'decimals{}() : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Votes_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1337,33,1337,98)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Votes_decreaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1339,33,1339,128)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'delegate{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Votes_delegate"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1341,33,1341,102)"), left{}(), format{}("%cdelegate%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'delegateBySig{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_ERC20Votes_delegateBySig"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1343,33,1343,152)"), left{}(), format{}("%cdelegateBySig%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'delegates{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Votes_delegates"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1345,33,1345,104)"), left{}(), format{}("%cdelegates%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'getPastTotalSupply{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Votes_getPastTotalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1347,33,1347,122)"), left{}(), format{}("%cgetPastTotalSupply%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'getPastVotes{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Votes_getPastVotes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1349,33,1349,118)"), left{}(), format{}("%cgetPastVotes%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'getVotes{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Votes_getVotes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1351,33,1351,102)"), left{}(), format{}("%cgetVotes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Votes_increaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1353,33,1353,128)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'name{}() : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Votes_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1355,33,1355,90)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'nonces{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Votes_nonces"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1357,33,1357,98)"), left{}(), format{}("%cnonces%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'numCheckpoints{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20Votes_numCheckpoints"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1359,33,1359,114)"), left{}(), format{}("%cnumCheckpoints%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'permit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_ERC20Votes_permit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1361,33,1361,146)"), left{}(), format{}("%cpermit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'symbol{}() : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Votes_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1363,33,1363,94)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'totalSupply{}() : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20Votes_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1365,33,1365,104)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'transfer{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20Votes_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1367,33,1367,110)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20Votes'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_ERC20Votes_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1369,33,1369,126)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'allowance{}(SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20_allowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1061,28,1061,102)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'approve{}(SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1063,28,1063,98)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'balanceOf{}(SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC20_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1065,28,1065,94)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'decimals{}() : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1067,28,1067,88)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20_decreaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1069,28,1069,118)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20_increaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1071,28,1071,118)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'name{}() : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1073,28,1073,80)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'symbol{}() : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1075,28,1075,84)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'totalSupply{}() : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC20_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1077,28,1077,94)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'transfer{}(SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC20_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1079,28,1079,100)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC20'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_ERC20_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1081,28,1081,116)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721{}(SortERC721Contract{}, SortERC721Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1563,26,1563,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ERC721Bridge{}(SortERC721BridgeContract{}, SortERC721BridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ERC721Bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1708,26,1708,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ERC721Bridge'Unds'MESSENGER{}() : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC721Bridge_MESSENGER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1710,35,1710,104)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Bridge'Unds'OTHER'Unds'BRIDGE{}() : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC721Bridge_OTHER_BRIDGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1712,35,1712,110)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Bridge'Unds'bridgeERC721{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_ERC721Bridge_bridgeERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1714,35,1714,152)"), left{}(), format{}("%cbridgeERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Bridge'Unds'bridgeERC721To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_ERC721Bridge_bridgeERC721To"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1716,35,1716,164)"), left{}(), format{}("%cbridgeERC721To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Bridge'Unds'messenger{}() : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC721Bridge_messenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1718,35,1718,104)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Bridge'Unds'otherBridge{}() : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC721Bridge_otherBridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1720,35,1720,108)"), left{}(), format{}("%cotherBridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable{}(SortERC721EnumerableContract{}, SortERC721EnumerableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ERC721Enumerable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1784,26,1784,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'approve{}(SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC721Enumerable_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1786,39,1786,120)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'balanceOf{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721Enumerable_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,39,1788,116)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'getApproved{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721Enumerable_getApproved"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1790,39,1790,120)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC721Enumerable_isApprovedForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1792,39,1792,138)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'name{}() : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC721Enumerable_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1794,39,1794,102)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'ownerOf{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721Enumerable_ownerOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1796,39,1796,112)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_ERC721Enumerable_safeTransferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1798,39,1798,146)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC721Enumerable_setApprovalForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1802,39,1802,140)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'supportsInterface{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721Enumerable_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1804,39,1804,132)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'symbol{}() : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC721Enumerable_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1806,39,1806,106)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'tokenByIndex{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721Enumerable_tokenByIndex"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1808,39,1808,122)"), left{}(), format{}("%ctokenByIndex%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'tokenOfOwnerByIndex{}(SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC721Enumerable_tokenOfOwnerByIndex"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,39,1810,144)"), left{}(), format{}("%ctokenOfOwnerByIndex%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'tokenURI{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721Enumerable_tokenURI"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,39,1812,114)"), left{}(), format{}("%ctokenURI%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'totalSupply{}() : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC721Enumerable_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1814,39,1814,116)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721Enumerable'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_ERC721Enumerable_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1816,39,1816,138)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'approve{}(SortInt{}, SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC721_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1565,29,1565,100)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'balanceOf{}(SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1567,29,1567,96)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'getApproved{}(SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721_getApproved"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1569,29,1569,100)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC721_isApprovedForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1571,29,1571,118)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'name{}() : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC721_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1573,29,1573,82)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'ownerOf{}(SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721_ownerOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1575,29,1575,92)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_ERC721_safeTransferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1577,29,1577,126)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ERC721_setApprovalForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1581,29,1581,120)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'supportsInterface{}(SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1583,29,1583,112)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'symbol{}() : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ERC721_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1585,29,1585,86)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'tokenURI{}(SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ERC721_tokenURI"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1587,29,1587,94)"), left{}(), format{}("%ctokenURI%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ERC721'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_ERC721_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1589,29,1589,118)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'FeeVault{}(SortFeeVaultContract{}, SortFeeVaultMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_FeeVault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1970,26,1970,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'FeeVault'Unds'MIN'Unds'WITHDRAWAL'Unds'AMOUNT{}() : SortFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FeeVault_MIN_WITHDRAWAL_AMOUNT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1972,31,1972,120)"), left{}(), format{}("%cMIN_WITHDRAWAL_AMOUNT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FeeVault'Unds'RECIPIENT{}() : SortFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FeeVault_RECIPIENT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1974,31,1974,96)"), left{}(), format{}("%cRECIPIENT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FeeVault'Unds'withdraw{}() : SortFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FeeVault_withdraw"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1976,31,1976,94)"), left{}(), format{}("%cwithdraw%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FreshSystemDictator{}(SortFreshSystemDictatorContract{}, SortFreshSystemDictatorMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_FreshSystemDictator"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2022,26,2022,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'FreshSystemDictator'Unds'config{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FreshSystemDictator_config"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,42,2024,112)"), left{}(), format{}("%cconfig%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FreshSystemDictator'Unds'currentStep{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FreshSystemDictator_currentStep"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2026,42,2026,122)"), left{}(), format{}("%ccurrentStep%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FreshSystemDictator'Unds'owner{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FreshSystemDictator_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2028,42,2028,110)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FreshSystemDictator'Unds'renounceOwnership{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FreshSystemDictator_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2030,42,2030,134)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FreshSystemDictator'Unds'step1{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FreshSystemDictator_step1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2032,42,2032,110)"), left{}(), format{}("%cstep1%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FreshSystemDictator'Unds'step2{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FreshSystemDictator_step2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2034,42,2034,110)"), left{}(), format{}("%cstep2%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FreshSystemDictator'Unds'transferOwnership{}(SortInt{}) : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_FreshSystemDictator_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2036,42,2036,138)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GasPriceOracle{}(SortGasPriceOracleContract{}, SortGasPriceOracleMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_GasPriceOracle"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2094,26,2094,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'GasPriceOracle'Unds'baseFee{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GasPriceOracle_baseFee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2096,37,2096,104)"), left{}(), format{}("%cbaseFee%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GasPriceOracle'Unds'decimals{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GasPriceOracle_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2098,37,2098,106)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GasPriceOracle'Unds'gasPrice{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GasPriceOracle_gasPrice"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2100,37,2100,106)"), left{}(), format{}("%cgasPrice%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GasPriceOracle'Unds'getL1Fee{}(SortBytes{}) : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GasPriceOracle_getL1Fee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2102,37,2102,116)"), left{}(), format{}("%cgetL1Fee%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GasPriceOracle'Unds'getL1GasUsed{}(SortBytes{}) : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GasPriceOracle_getL1GasUsed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2104,37,2104,124)"), left{}(), format{}("%cgetL1GasUsed%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GasPriceOracle'Unds'l1BaseFee{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GasPriceOracle_l1BaseFee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2106,37,2106,108)"), left{}(), format{}("%cl1BaseFee%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GasPriceOracle'Unds'overhead{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GasPriceOracle_overhead"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2108,37,2108,106)"), left{}(), format{}("%coverhead%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GasPriceOracle'Unds'scalar{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GasPriceOracle_scalar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2110,37,2110,102)"), left{}(), format{}("%cscalar%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GasPriceOracle'Unds'version{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GasPriceOracle_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2112,37,2112,104)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken{}(SortGovernanceTokenContract{}, SortGovernanceTokenMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_GovernanceToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2183,26,2183,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'DOMAIN'Unds'SEPARATOR{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GovernanceToken_DOMAIN_SEPARATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2185,38,2185,124)"), left{}(), format{}("%cDOMAIN_SEPARATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'allowance{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_GovernanceToken_allowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2187,38,2187,122)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'approve{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_GovernanceToken_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2189,38,2189,118)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'balanceOf{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GovernanceToken_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2191,38,2191,114)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'burn{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GovernanceToken_burn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2193,38,2193,104)"), left{}(), format{}("%cburn%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'burnFrom{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_GovernanceToken_burnFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2195,38,2195,120)"), left{}(), format{}("%cburnFrom%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'checkpoints{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_GovernanceToken_checkpoints"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2197,38,2197,126)"), left{}(), format{}("%ccheckpoints%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'decimals{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GovernanceToken_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2199,38,2199,108)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_GovernanceToken_decreaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2201,38,2201,138)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'delegate{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GovernanceToken_delegate"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2203,38,2203,112)"), left{}(), format{}("%cdelegate%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'delegateBySig{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_GovernanceToken_delegateBySig"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2205,38,2205,162)"), left{}(), format{}("%cdelegateBySig%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'delegates{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GovernanceToken_delegates"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2207,38,2207,114)"), left{}(), format{}("%cdelegates%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'getPastTotalSupply{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GovernanceToken_getPastTotalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2209,38,2209,132)"), left{}(), format{}("%cgetPastTotalSupply%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'getPastVotes{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_GovernanceToken_getPastVotes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2211,38,2211,128)"), left{}(), format{}("%cgetPastVotes%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'getVotes{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GovernanceToken_getVotes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2213,38,2213,112)"), left{}(), format{}("%cgetVotes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_GovernanceToken_increaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2215,38,2215,138)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'mint{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_GovernanceToken_mint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2217,38,2217,112)"), left{}(), format{}("%cmint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'name{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GovernanceToken_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2219,38,2219,100)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'nonces{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GovernanceToken_nonces"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2221,38,2221,108)"), left{}(), format{}("%cnonces%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'numCheckpoints{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GovernanceToken_numCheckpoints"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2223,38,2223,124)"), left{}(), format{}("%cnumCheckpoints%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'owner{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GovernanceToken_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2225,38,2225,102)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'permit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_GovernanceToken_permit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2227,38,2227,156)"), left{}(), format{}("%cpermit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'renounceOwnership{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GovernanceToken_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2229,38,2229,126)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'symbol{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GovernanceToken_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2231,38,2231,104)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'totalSupply{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GovernanceToken_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2233,38,2233,114)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'transfer{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_GovernanceToken_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2235,38,2235,120)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_GovernanceToken_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2237,38,2237,136)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'GovernanceToken'Unds'transferOwnership{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_GovernanceToken_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2239,38,2239,130)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC165{}(SortIERC165Contract{}, SortIERC165Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IERC165"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2490,26,2490,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IERC165'Unds'supportsInterface{}(SortInt{}) : SortIERC165Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC165_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2492,30,2492,114)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20{}(SortIERC20Contract{}, SortIERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2514,26,2514,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IERC20Metadata{}(SortIERC20MetadataContract{}, SortIERC20MetadataMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IERC20Metadata"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2591,26,2591,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IERC20Metadata'Unds'allowance{}(SortInt{}, SortInt{}) : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC20Metadata_allowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2593,37,2593,120)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Metadata'Unds'approve{}(SortInt{}, SortInt{}) : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC20Metadata_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2595,37,2595,116)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Metadata'Unds'balanceOf{}(SortInt{}) : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC20Metadata_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2597,37,2597,112)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Metadata'Unds'decimals{}() : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IERC20Metadata_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2599,37,2599,106)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Metadata'Unds'name{}() : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IERC20Metadata_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2601,37,2601,98)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Metadata'Unds'symbol{}() : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IERC20Metadata_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2603,37,2603,102)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Metadata'Unds'totalSupply{}() : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IERC20Metadata_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2605,37,2605,112)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Metadata'Unds'transfer{}(SortInt{}, SortInt{}) : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC20Metadata_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2607,37,2607,118)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Metadata'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_IERC20Metadata_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2609,37,2609,134)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Permit{}(SortIERC20PermitContract{}, SortIERC20PermitMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IERC20Permit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10128,26,10128,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IERC20Permit'Unds'DOMAIN'Unds'SEPARATOR{}() : SortIERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IERC20Permit_DOMAIN_SEPARATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10130,35,10130,118)"), left{}(), format{}("%cDOMAIN_SEPARATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Permit'Unds'nonces{}(SortInt{}) : SortIERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC20Permit_nonces"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10132,35,10132,102)"), left{}(), format{}("%cnonces%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20Permit'Unds'permit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortIERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_IERC20Permit_permit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10134,35,10134,150)"), left{}(), format{}("%cpermit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20'Unds'allowance{}(SortInt{}, SortInt{}) : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC20_allowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2516,29,2516,104)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20'Unds'approve{}(SortInt{}, SortInt{}) : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC20_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2518,29,2518,100)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20'Unds'balanceOf{}(SortInt{}) : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC20_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2520,29,2520,96)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20'Unds'totalSupply{}() : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IERC20_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2522,29,2522,96)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20'Unds'transfer{}(SortInt{}, SortInt{}) : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC20_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2524,29,2524,102)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC20'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_IERC20_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2526,29,2526,118)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721{}(SortIERC721Contract{}, SortIERC721Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2692,26,2692,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IERC721Enumerable{}(SortIERC721EnumerableContract{}, SortIERC721EnumerableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IERC721Enumerable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2812,26,2812,136)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'approve{}(SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC721Enumerable_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2814,40,2814,122)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'balanceOf{}(SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721Enumerable_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2816,40,2816,118)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'getApproved{}(SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721Enumerable_getApproved"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2818,40,2818,122)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC721Enumerable_isApprovedForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2820,40,2820,140)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'ownerOf{}(SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721Enumerable_ownerOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2822,40,2822,114)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_IERC721Enumerable_safeTransferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2824,40,2824,148)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC721Enumerable_setApprovalForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2828,40,2828,142)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'supportsInterface{}(SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721Enumerable_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2830,40,2830,134)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'tokenByIndex{}(SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721Enumerable_tokenByIndex"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2832,40,2832,124)"), left{}(), format{}("%ctokenByIndex%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'tokenOfOwnerByIndex{}(SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC721Enumerable_tokenOfOwnerByIndex"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2834,40,2834,146)"), left{}(), format{}("%ctokenOfOwnerByIndex%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'totalSupply{}() : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IERC721Enumerable_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2836,40,2836,118)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Enumerable'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_IERC721Enumerable_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2838,40,2838,140)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata{}(SortIERC721MetadataContract{}, SortIERC721MetadataMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IERC721Metadata"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2960,26,2960,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'approve{}(SortInt{}, SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC721Metadata_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2962,38,2962,118)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'balanceOf{}(SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721Metadata_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2964,38,2964,114)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'getApproved{}(SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721Metadata_getApproved"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2966,38,2966,118)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC721Metadata_isApprovedForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2968,38,2968,136)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'name{}() : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IERC721Metadata_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2970,38,2970,100)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'ownerOf{}(SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721Metadata_ownerOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2972,38,2972,110)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_IERC721Metadata_safeTransferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2974,38,2974,144)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC721Metadata_setApprovalForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2978,38,2978,138)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'supportsInterface{}(SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721Metadata_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2980,38,2980,130)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'symbol{}() : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IERC721Metadata_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2982,38,2982,104)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'tokenURI{}(SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721Metadata_tokenURI"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2984,38,2984,112)"), left{}(), format{}("%ctokenURI%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Metadata'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_IERC721Metadata_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2986,38,2986,136)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721Receiver{}(SortIERC721ReceiverContract{}, SortIERC721ReceiverMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IERC721Receiver"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3105,26,3105,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IERC721Receiver'Unds'onERC721Received{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortIERC721ReceiverMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_IERC721Receiver_onERC721Received"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3107,38,3107,158)"), left{}(), format{}("%conERC721Received%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721'Unds'approve{}(SortInt{}, SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC721_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2694,30,2694,102)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721'Unds'balanceOf{}(SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2696,30,2696,98)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721'Unds'getApproved{}(SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721_getApproved"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2698,30,2698,102)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC721_isApprovedForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2700,30,2700,120)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721'Unds'ownerOf{}(SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721_ownerOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2702,30,2702,94)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_IERC721_safeTransferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2704,30,2704,128)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IERC721_setApprovalForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2708,30,2708,122)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721'Unds'supportsInterface{}(SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IERC721_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2710,30,2710,114)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IERC721'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_IERC721_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2712,30,2712,120)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IL1ChugSplashDeployer{}(SortIL1ChugSplashDeployerContract{}, SortIL1ChugSplashDeployerMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IL1ChugSplashDeployer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3366,26,3366,148)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IL1ChugSplashDeployer'Unds'isUpgrading{}() : SortIL1ChugSplashDeployerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IL1ChugSplashDeployer_isUpgrading"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3368,44,3368,126)"), left{}(), format{}("%cisUpgrading%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ILegacyMintableERC20{}(SortILegacyMintableERC20Contract{}, SortILegacyMintableERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ILegacyMintableERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7544,26,7544,145)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ILegacyMintableERC20'Unds'burn{}(SortInt{}, SortInt{}) : SortILegacyMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ILegacyMintableERC20_burn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7546,43,7546,122)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ILegacyMintableERC20'Unds'l1Token{}() : SortILegacyMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ILegacyMintableERC20_l1Token"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7548,43,7548,116)"), left{}(), format{}("%cl1Token%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ILegacyMintableERC20'Unds'mint{}(SortInt{}, SortInt{}) : SortILegacyMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ILegacyMintableERC20_mint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7550,43,7550,122)"), left{}(), format{}("%cmint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC20{}(SortIOptimismMintableERC20Contract{}, SortIOptimismMintableERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IOptimismMintableERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7589,26,7589,151)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IOptimismMintableERC20'Unds'bridge{}() : SortIOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IOptimismMintableERC20_bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7591,45,7591,118)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC20'Unds'burn{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IOptimismMintableERC20_burn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7593,45,7593,126)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC20'Unds'mint{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IOptimismMintableERC20_mint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7595,45,7595,126)"), left{}(), format{}("%cmint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC20'Unds'remoteToken{}() : SortIOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IOptimismMintableERC20_remoteToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7597,45,7597,128)"), left{}(), format{}("%cremoteToken%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721{}(SortIOptimismMintableERC721Contract{}, SortIOptimismMintableERC721Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IOptimismMintableERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7642,26,7642,154)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'BRIDGE{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IOptimismMintableERC721_BRIDGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7644,46,7644,120)"), left{}(), format{}("%cBRIDGE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'REMOTE'Unds'CHAIN'Unds'ID{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IOptimismMintableERC721_REMOTE_CHAIN_ID"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7646,46,7646,138)"), left{}(), format{}("%cREMOTE_CHAIN_ID%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'REMOTE'Unds'TOKEN{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IOptimismMintableERC721_REMOTE_TOKEN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7648,46,7648,132)"), left{}(), format{}("%cREMOTE_TOKEN%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'approve{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IOptimismMintableERC721_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7650,46,7650,134)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'balanceOf{}(SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IOptimismMintableERC721_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7652,46,7652,130)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'bridge{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IOptimismMintableERC721_bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7654,46,7654,120)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'burn{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IOptimismMintableERC721_burn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7656,46,7656,128)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'getApproved{}(SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IOptimismMintableERC721_getApproved"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7658,46,7658,134)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IOptimismMintableERC721_isApprovedForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7660,46,7660,152)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'ownerOf{}(SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IOptimismMintableERC721_ownerOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7662,46,7662,126)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'remoteChainId{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IOptimismMintableERC721_remoteChainId"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7664,46,7664,134)"), left{}(), format{}("%cremoteChainId%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'remoteToken{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IOptimismMintableERC721_remoteToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7666,46,7666,130)"), left{}(), format{}("%cremoteToken%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'safeMint{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IOptimismMintableERC721_safeMint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7668,46,7668,136)"), left{}(), format{}("%csafeMint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_IOptimismMintableERC721_safeTransferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7670,46,7670,160)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IOptimismMintableERC721_setApprovalForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7674,46,7674,154)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'supportsInterface{}(SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IOptimismMintableERC721_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7676,46,7676,146)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'tokenByIndex{}(SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IOptimismMintableERC721_tokenByIndex"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7678,46,7678,136)"), left{}(), format{}("%ctokenByIndex%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'tokenOfOwnerByIndex{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IOptimismMintableERC721_tokenOfOwnerByIndex"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7680,46,7680,158)"), left{}(), format{}("%ctokenOfOwnerByIndex%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'totalSupply{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IOptimismMintableERC721_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7682,46,7682,130)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_IOptimismMintableERC721_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7684,46,7684,152)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IStaticERC1967Proxy{}(SortIStaticERC1967ProxyContract{}, SortIStaticERC1967ProxyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IStaticERC1967Proxy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6500,26,6500,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IStaticERC1967Proxy'Unds'admin{}() : SortIStaticERC1967ProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IStaticERC1967Proxy_admin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6502,42,6502,110)"), left{}(), format{}("%cadmin%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IStaticERC1967Proxy'Unds'implementation{}() : SortIStaticERC1967ProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IStaticERC1967Proxy_implementation"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6504,42,6504,128)"), left{}(), format{}("%cimplementation%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IStaticL1ChugSplashProxy{}(SortIStaticL1ChugSplashProxyContract{}, SortIStaticL1ChugSplashProxyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IStaticL1ChugSplashProxy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6531,26,6531,157)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IStaticL1ChugSplashProxy'Unds'getImplementation{}() : SortIStaticL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IStaticL1ChugSplashProxy_getImplementation"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6533,47,6533,144)"), left{}(), format{}("%cgetImplementation%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IStaticL1ChugSplashProxy'Unds'getOwner{}() : SortIStaticL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_IStaticL1ChugSplashProxy_getOwner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6535,47,6535,126)"), left{}(), format{}("%cgetOwner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'IVotes{}(SortIVotesContract{}, SortIVotesMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_IVotes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3133,26,3133,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'IVotes'Unds'delegate{}(SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IVotes_delegate"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3135,29,3135,94)"), left{}(), format{}("%cdelegate%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IVotes'Unds'delegateBySig{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_IVotes_delegateBySig"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3137,29,3137,144)"), left{}(), format{}("%cdelegateBySig%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IVotes'Unds'delegates{}(SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IVotes_delegates"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3139,29,3139,96)"), left{}(), format{}("%cdelegates%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IVotes'Unds'getPastTotalSupply{}(SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IVotes_getPastTotalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3141,29,3141,114)"), left{}(), format{}("%cgetPastTotalSupply%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IVotes'Unds'getPastVotes{}(SortInt{}, SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_IVotes_getPastVotes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3143,29,3143,110)"), left{}(), format{}("%cgetPastVotes%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'IVotes'Unds'getVotes{}(SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_IVotes_getVotes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3145,29,3145,94)"), left{}(), format{}("%cgetVotes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block{}(SortL1BlockContract{}, SortL1BlockMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L1Block"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3223,26,3223,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L1BlockNumber{}(SortL1BlockNumberContract{}, SortL1BlockNumberMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L1BlockNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3335,26,3335,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L1BlockNumber'Unds'getL1BlockNumber{}() : SortL1BlockNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1BlockNumber_getL1BlockNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3337,36,3337,120)"), left{}(), format{}("%cgetL1BlockNumber%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1BlockNumber'Unds'version{}() : SortL1BlockNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1BlockNumber_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3339,36,3339,102)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'DEPOSITOR'Unds'ACCOUNT{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1Block_DEPOSITOR_ACCOUNT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3225,30,3225,110)"), left{}(), format{}("%cDEPOSITOR_ACCOUNT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'basefee{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1Block_basefee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3227,30,3227,90)"), left{}(), format{}("%cbasefee%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'batcherHash{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1Block_batcherHash"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3229,30,3229,98)"), left{}(), format{}("%cbatcherHash%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'hash{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1Block_hash"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3231,30,3231,84)"), left{}(), format{}("%chash%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'l1FeeOverhead{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1Block_l1FeeOverhead"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3233,30,3233,102)"), left{}(), format{}("%cl1FeeOverhead%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'l1FeeScalar{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1Block_l1FeeScalar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3235,30,3235,98)"), left{}(), format{}("%cl1FeeScalar%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'number{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1Block_number"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3237,30,3237,88)"), left{}(), format{}("%cnumber%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'sequenceNumber{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1Block_sequenceNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3239,30,3239,104)"), left{}(), format{}("%csequenceNumber%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'setL1BlockValues{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101010101"), klabel{}("method_L1Block_setL1BlockValues"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3241,30,3241,168)"), left{}(), format{}("%csetL1BlockValues%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'timestamp{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1Block_timestamp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3243,30,3243,94)"), left{}(), format{}("%ctimestamp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1Block'Unds'version{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1Block_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3245,30,3245,90)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ChugSplashProxy{}(SortL1ChugSplashProxyContract{}, SortL1ChugSplashProxyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L1ChugSplashProxy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3389,26,3389,136)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L1ChugSplashProxy'Unds'getImplementation{}() : SortL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1ChugSplashProxy_getImplementation"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3391,40,3391,130)"), left{}(), format{}("%cgetImplementation%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ChugSplashProxy'Unds'getOwner{}() : SortL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1ChugSplashProxy_getOwner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3393,40,3393,112)"), left{}(), format{}("%cgetOwner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ChugSplashProxy'Unds'setCode{}(SortBytes{}) : SortL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L1ChugSplashProxy_setCode"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3395,40,3395,120)"), left{}(), format{}("%csetCode%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ChugSplashProxy'Unds'setOwner{}(SortInt{}) : SortL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L1ChugSplashProxy_setOwner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3397,40,3397,116)"), left{}(), format{}("%csetOwner%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ChugSplashProxy'Unds'setStorage{}(SortInt{}, SortInt{}) : SortL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_L1ChugSplashProxy_setStorage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3399,40,3399,128)"), left{}(), format{}("%csetStorage%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger{}(SortL1CrossDomainMessengerContract{}, SortL1CrossDomainMessengerMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L1CrossDomainMessenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3449,26,3449,151)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'MESSAGE'Unds'VERSION{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_MESSAGE_VERSION"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3451,45,3451,136)"), left{}(), format{}("%cMESSAGE_VERSION%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CALLDATA'Unds'OVERHEAD{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_MIN_GAS_CALLDATA_OVERHEAD"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3453,45,3453,156)"), left{}(), format{}("%cMIN_GAS_CALLDATA_OVERHEAD%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CONSTANT'Unds'OVERHEAD{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_MIN_GAS_CONSTANT_OVERHEAD"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3455,45,3455,156)"), left{}(), format{}("%cMIN_GAS_CONSTANT_OVERHEAD%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'DENOMINATOR{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3457,45,3457,178)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'NUMERATOR{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3459,45,3459,174)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'OTHER'Unds'MESSENGER{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_OTHER_MESSENGER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3461,45,3461,136)"), left{}(), format{}("%cOTHER_MESSENGER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'PORTAL{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_PORTAL"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3463,45,3463,118)"), left{}(), format{}("%cPORTAL%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'baseGas{}(SortBytes{}, SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_L1CrossDomainMessenger_baseGas"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3465,45,3465,138)"), left{}(), format{}("%cbaseGas%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'initialize{}(SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L1CrossDomainMessenger_initialize"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3467,45,3467,130)"), left{}(), format{}("%cinitialize%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'messageNonce{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_messageNonce"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3469,45,3469,130)"), left{}(), format{}("%cmessageNonce%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'owner{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3471,45,3471,116)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'pause{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_pause"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3473,45,3473,116)"), left{}(), format{}("%cpause%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'paused{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_paused"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3475,45,3475,118)"), left{}(), format{}("%cpaused%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'receivedMessages{}(SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L1CrossDomainMessenger_receivedMessages"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3477,45,3477,142)"), left{}(), format{}("%creceivedMessages%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'relayMessage{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L1CrossDomainMessenger_relayMessage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3479,45,3479,180)"), left{}(), format{}("%crelayMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'renounceOwnership{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3481,45,3481,140)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'sendMessage{}(SortInt{}, SortBytes{}, SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_L1CrossDomainMessenger_sendMessage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3483,45,3483,154)"), left{}(), format{}("%csendMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'successfulMessages{}(SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L1CrossDomainMessenger_successfulMessages"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3485,45,3485,146)"), left{}(), format{}("%csuccessfulMessages%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'transferOwnership{}(SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L1CrossDomainMessenger_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3487,45,3487,144)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'unpause{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_unpause"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3489,45,3489,120)"), left{}(), format{}("%cunpause%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'version{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3491,45,3491,120)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'xDomainMessageSender{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1CrossDomainMessenger_xDomainMessageSender"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3493,45,3493,146)"), left{}(), format{}("%cxDomainMessageSender%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ERC721Bridge{}(SortL1ERC721BridgeContract{}, SortL1ERC721BridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L1ERC721Bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3658,26,3658,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L1ERC721Bridge'Unds'MESSENGER{}() : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1ERC721Bridge_MESSENGER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3660,37,3660,108)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ERC721Bridge'Unds'OTHER'Unds'BRIDGE{}() : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1ERC721Bridge_OTHER_BRIDGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3662,37,3662,114)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ERC721Bridge'Unds'bridgeERC721{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_L1ERC721Bridge_bridgeERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3664,37,3664,156)"), left{}(), format{}("%cbridgeERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ERC721Bridge'Unds'bridgeERC721To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L1ERC721Bridge_bridgeERC721To"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3666,37,3666,168)"), left{}(), format{}("%cbridgeERC721To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ERC721Bridge'Unds'deposits{}(SortInt{}, SortInt{}, SortInt{}) : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_L1ERC721Bridge_deposits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3668,37,3668,126)"), left{}(), format{}("%cdeposits%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ERC721Bridge'Unds'finalizeBridgeERC721{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L1ERC721Bridge_finalizeBridgeERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3670,37,3670,180)"), left{}(), format{}("%cfinalizeBridgeERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ERC721Bridge'Unds'messenger{}() : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1ERC721Bridge_messenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3672,37,3672,108)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ERC721Bridge'Unds'otherBridge{}() : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1ERC721Bridge_otherBridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3674,37,3674,112)"), left{}(), format{}("%cotherBridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1ERC721Bridge'Unds'version{}() : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1ERC721Bridge_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3676,37,3676,104)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1FeeVault{}(SortL1FeeVaultContract{}, SortL1FeeVaultMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L1FeeVault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3769,26,3769,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L1FeeVault'Unds'MIN'Unds'WITHDRAWAL'Unds'AMOUNT{}() : SortL1FeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1FeeVault_MIN_WITHDRAWAL_AMOUNT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3771,33,3771,124)"), left{}(), format{}("%cMIN_WITHDRAWAL_AMOUNT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1FeeVault'Unds'RECIPIENT{}() : SortL1FeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1FeeVault_RECIPIENT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3773,33,3773,100)"), left{}(), format{}("%cRECIPIENT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1FeeVault'Unds'version{}() : SortL1FeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1FeeVault_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3775,33,3775,96)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1FeeVault'Unds'withdraw{}() : SortL1FeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1FeeVault_withdraw"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3777,33,3777,98)"), left{}(), format{}("%cwithdraw%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge{}(SortL1StandardBridgeContract{}, SortL1StandardBridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L1StandardBridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3816,26,3816,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'MESSENGER{}() : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1StandardBridge_MESSENGER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3818,39,3818,112)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'OTHER'Unds'BRIDGE{}() : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1StandardBridge_OTHER_BRIDGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3820,39,3820,118)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'bridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_L1StandardBridge_bridgeERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3822,39,3822,158)"), left{}(), format{}("%cbridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'bridgeERC20To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L1StandardBridge_bridgeERC20To"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3824,39,3824,170)"), left{}(), format{}("%cbridgeERC20To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'bridgeETH{}(SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_L1StandardBridge_bridgeETH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3826,39,3826,130)"), left{}(), format{}("%cbridgeETH%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'bridgeETHTo{}(SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_L1StandardBridge_bridgeETHTo"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3828,39,3828,142)"), left{}(), format{}("%cbridgeETHTo%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'depositERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_L1StandardBridge_depositERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3830,39,3830,160)"), left{}(), format{}("%cdepositERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'depositERC20To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L1StandardBridge_depositERC20To"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3832,39,3832,172)"), left{}(), format{}("%cdepositERC20To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'depositETH{}(SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_L1StandardBridge_depositETH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3834,39,3834,132)"), left{}(), format{}("%cdepositETH%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'depositETHTo{}(SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_L1StandardBridge_depositETHTo"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3836,39,3836,144)"), left{}(), format{}("%cdepositETHTo%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'deposits{}(SortInt{}, SortInt{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_L1StandardBridge_deposits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3838,39,3838,122)"), left{}(), format{}("%cdeposits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'finalizeBridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L1StandardBridge_finalizeBridgeERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3840,39,3840,182)"), left{}(), format{}("%cfinalizeBridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'finalizeBridgeETH{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_L1StandardBridge_finalizeBridgeETH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3842,39,3842,162)"), left{}(), format{}("%cfinalizeBridgeETH%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'finalizeERC20Withdrawal{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L1StandardBridge_finalizeERC20Withdrawal"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3844,39,3844,190)"), left{}(), format{}("%cfinalizeERC20Withdrawal%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'finalizeETHWithdrawal{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_L1StandardBridge_finalizeETHWithdrawal"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3846,39,3846,170)"), left{}(), format{}("%cfinalizeETHWithdrawal%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'l2TokenBridge{}() : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1StandardBridge_l2TokenBridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3848,39,3848,120)"), left{}(), format{}("%cl2TokenBridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'messenger{}() : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1StandardBridge_messenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3850,39,3850,112)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L1StandardBridge'Unds'version{}() : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L1StandardBridge_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3852,39,3852,108)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger{}(SortL2CrossDomainMessengerContract{}, SortL2CrossDomainMessengerMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L2CrossDomainMessenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4042,26,4042,151)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'MESSAGE'Unds'VERSION{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_MESSAGE_VERSION"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4044,45,4044,136)"), left{}(), format{}("%cMESSAGE_VERSION%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CALLDATA'Unds'OVERHEAD{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_MIN_GAS_CALLDATA_OVERHEAD"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4046,45,4046,156)"), left{}(), format{}("%cMIN_GAS_CALLDATA_OVERHEAD%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CONSTANT'Unds'OVERHEAD{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_MIN_GAS_CONSTANT_OVERHEAD"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4048,45,4048,156)"), left{}(), format{}("%cMIN_GAS_CONSTANT_OVERHEAD%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'DENOMINATOR{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4050,45,4050,178)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'NUMERATOR{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4052,45,4052,174)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'OTHER'Unds'MESSENGER{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_OTHER_MESSENGER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4054,45,4054,136)"), left{}(), format{}("%cOTHER_MESSENGER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'baseGas{}(SortBytes{}, SortInt{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_L2CrossDomainMessenger_baseGas"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4056,45,4056,138)"), left{}(), format{}("%cbaseGas%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'initialize{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_initialize"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4058,45,4058,126)"), left{}(), format{}("%cinitialize%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'l1CrossDomainMessenger{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_l1CrossDomainMessenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4060,45,4060,150)"), left{}(), format{}("%cl1CrossDomainMessenger%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'messageNonce{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_messageNonce"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4062,45,4062,130)"), left{}(), format{}("%cmessageNonce%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'owner{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4064,45,4064,116)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'pause{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_pause"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4066,45,4066,116)"), left{}(), format{}("%cpause%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'paused{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_paused"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4068,45,4068,118)"), left{}(), format{}("%cpaused%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'receivedMessages{}(SortInt{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L2CrossDomainMessenger_receivedMessages"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4070,45,4070,142)"), left{}(), format{}("%creceivedMessages%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'relayMessage{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L2CrossDomainMessenger_relayMessage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4072,45,4072,180)"), left{}(), format{}("%crelayMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'renounceOwnership{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4074,45,4074,140)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'sendMessage{}(SortInt{}, SortBytes{}, SortInt{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_L2CrossDomainMessenger_sendMessage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4076,45,4076,154)"), left{}(), format{}("%csendMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'successfulMessages{}(SortInt{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L2CrossDomainMessenger_successfulMessages"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4078,45,4078,146)"), left{}(), format{}("%csuccessfulMessages%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'transferOwnership{}(SortInt{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L2CrossDomainMessenger_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4080,45,4080,144)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'unpause{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_unpause"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4082,45,4082,120)"), left{}(), format{}("%cunpause%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'version{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4084,45,4084,120)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'xDomainMessageSender{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2CrossDomainMessenger_xDomainMessageSender"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4086,45,4086,146)"), left{}(), format{}("%cxDomainMessageSender%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ERC721Bridge{}(SortL2ERC721BridgeContract{}, SortL2ERC721BridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L2ERC721Bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4250,26,4250,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L2ERC721Bridge'Unds'MESSENGER{}() : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2ERC721Bridge_MESSENGER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4252,37,4252,108)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ERC721Bridge'Unds'OTHER'Unds'BRIDGE{}() : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2ERC721Bridge_OTHER_BRIDGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4254,37,4254,114)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ERC721Bridge'Unds'bridgeERC721{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_L2ERC721Bridge_bridgeERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4256,37,4256,156)"), left{}(), format{}("%cbridgeERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ERC721Bridge'Unds'bridgeERC721To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L2ERC721Bridge_bridgeERC721To"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4258,37,4258,168)"), left{}(), format{}("%cbridgeERC721To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ERC721Bridge'Unds'finalizeBridgeERC721{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L2ERC721Bridge_finalizeBridgeERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4260,37,4260,180)"), left{}(), format{}("%cfinalizeBridgeERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ERC721Bridge'Unds'messenger{}() : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2ERC721Bridge_messenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4262,37,4262,108)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ERC721Bridge'Unds'otherBridge{}() : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2ERC721Bridge_otherBridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4264,37,4264,112)"), left{}(), format{}("%cotherBridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ERC721Bridge'Unds'version{}() : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2ERC721Bridge_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4266,37,4266,104)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle{}(SortL2OutputOracleContract{}, SortL2OutputOracleMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L2OutputOracle"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4349,26,4349,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'HISTORICAL'Unds'TOTAL'Unds'BLOCKS{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_HISTORICAL_TOTAL_BLOCKS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4351,37,4351,136)"), left{}(), format{}("%cHISTORICAL_TOTAL_BLOCKS%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'L2'Unds'BLOCK'Unds'TIME{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_L2_BLOCK_TIME"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4353,37,4353,116)"), left{}(), format{}("%cL2_BLOCK_TIME%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'STARTING'Unds'BLOCK'Unds'NUMBER{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_STARTING_BLOCK_NUMBER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4355,37,4355,132)"), left{}(), format{}("%cSTARTING_BLOCK_NUMBER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'STARTING'Unds'TIMESTAMP{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_STARTING_TIMESTAMP"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4357,37,4357,126)"), left{}(), format{}("%cSTARTING_TIMESTAMP%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'SUBMISSION'Unds'INTERVAL{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_SUBMISSION_INTERVAL"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4359,37,4359,128)"), left{}(), format{}("%cSUBMISSION_INTERVAL%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'changeProposer{}(SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L2OutputOracle_changeProposer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4361,37,4361,122)"), left{}(), format{}("%cchangeProposer%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'computeL2Timestamp{}(SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L2OutputOracle_computeL2Timestamp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4363,37,4363,130)"), left{}(), format{}("%ccomputeL2Timestamp%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'deleteL2Output{}(SortK{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L2OutputOracle_deleteL2Output"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4365,37,4365,120)"), left{}(), format{}("%cdeleteL2Output%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'getL2Output{}(SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L2OutputOracle_getL2Output"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4367,37,4367,116)"), left{}(), format{}("%cgetL2Output%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'initialize{}(SortInt{}, SortInt{}, SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_L2OutputOracle_initialize"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4369,37,4369,130)"), left{}(), format{}("%cinitialize%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'latestBlockNumber{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_latestBlockNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4371,37,4371,124)"), left{}(), format{}("%clatestBlockNumber%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'nextBlockNumber{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_nextBlockNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4373,37,4373,120)"), left{}(), format{}("%cnextBlockNumber%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'owner{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4375,37,4375,100)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'proposeL2Output{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_L2OutputOracle_proposeL2Output"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4377,37,4377,148)"), left{}(), format{}("%cproposeL2Output%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'proposer{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_proposer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4379,37,4379,106)"), left{}(), format{}("%cproposer%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'renounceOwnership{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4381,37,4381,124)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'transferOwnership{}(SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L2OutputOracle_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4383,37,4383,128)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2OutputOracle'Unds'version{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2OutputOracle_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4385,37,4385,104)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge{}(SortL2StandardBridgeContract{}, SortL2StandardBridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L2StandardBridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4518,26,4518,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'MESSENGER{}() : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2StandardBridge_MESSENGER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4520,39,4520,112)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'OTHER'Unds'BRIDGE{}() : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2StandardBridge_OTHER_BRIDGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4522,39,4522,118)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'bridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_L2StandardBridge_bridgeERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4524,39,4524,158)"), left{}(), format{}("%cbridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'bridgeERC20To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L2StandardBridge_bridgeERC20To"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4526,39,4526,170)"), left{}(), format{}("%cbridgeERC20To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'bridgeETH{}(SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_L2StandardBridge_bridgeETH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4528,39,4528,130)"), left{}(), format{}("%cbridgeETH%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'bridgeETHTo{}(SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_L2StandardBridge_bridgeETHTo"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4530,39,4530,142)"), left{}(), format{}("%cbridgeETHTo%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'deposits{}(SortInt{}, SortInt{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_L2StandardBridge_deposits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4532,39,4532,122)"), left{}(), format{}("%cdeposits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'finalizeBridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L2StandardBridge_finalizeBridgeERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4534,39,4534,182)"), left{}(), format{}("%cfinalizeBridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'finalizeBridgeETH{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_L2StandardBridge_finalizeBridgeETH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4536,39,4536,162)"), left{}(), format{}("%cfinalizeBridgeETH%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'finalizeDeposit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_L2StandardBridge_finalizeDeposit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4538,39,4538,174)"), left{}(), format{}("%cfinalizeDeposit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'messenger{}() : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2StandardBridge_messenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4540,39,4540,112)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'version{}() : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2StandardBridge_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4542,39,4542,108)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'withdraw{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_L2StandardBridge_withdraw"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4544,39,4544,144)"), left{}(), format{}("%cwithdraw%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2StandardBridge'Unds'withdrawTo{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_L2StandardBridge_withdrawTo"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4546,39,4546,156)"), left{}(), format{}("%cwithdrawTo%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ToL1MessagePasser{}(SortL2ToL1MessagePasserContract{}, SortL2ToL1MessagePasserMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_L2ToL1MessagePasser"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4698,26,4698,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'L2ToL1MessagePasser'Unds'burn{}() : SortL2ToL1MessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2ToL1MessagePasser_burn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4700,42,4700,108)"), left{}(), format{}("%cburn%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ToL1MessagePasser'Unds'initiateWithdrawal{}(SortInt{}, SortInt{}, SortBytes{}) : SortL2ToL1MessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_L2ToL1MessagePasser_initiateWithdrawal"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4702,42,4702,162)"), left{}(), format{}("%cinitiateWithdrawal%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ToL1MessagePasser'Unds'nonce{}() : SortL2ToL1MessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2ToL1MessagePasser_nonce"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4704,42,4704,110)"), left{}(), format{}("%cnonce%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ToL1MessagePasser'Unds'sentMessages{}(SortInt{}) : SortL2ToL1MessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_L2ToL1MessagePasser_sentMessages"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4706,42,4706,128)"), left{}(), format{}("%csentMessages%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'L2ToL1MessagePasser'Unds'version{}() : SortL2ToL1MessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_L2ToL1MessagePasser_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4708,42,4708,114)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH{}(SortLegacyERC20ETHContract{}, SortLegacyERC20ETHMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_LegacyERC20ETH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4758,26,4758,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'allowance{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_LegacyERC20ETH_allowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4760,37,4760,120)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'approve{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_LegacyERC20ETH_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4762,37,4762,116)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'balanceOf{}(SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LegacyERC20ETH_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4764,37,4764,112)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'bridge{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LegacyERC20ETH_bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4766,37,4766,102)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'burn{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_LegacyERC20ETH_burn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4768,37,4768,110)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'decimals{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LegacyERC20ETH_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4770,37,4770,106)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_LegacyERC20ETH_decreaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4772,37,4772,136)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_LegacyERC20ETH_increaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4774,37,4774,136)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'l1Token{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LegacyERC20ETH_l1Token"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4776,37,4776,104)"), left{}(), format{}("%cl1Token%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'l2Bridge{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LegacyERC20ETH_l2Bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4778,37,4778,106)"), left{}(), format{}("%cl2Bridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'mint{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_LegacyERC20ETH_mint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4780,37,4780,110)"), left{}(), format{}("%cmint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'name{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LegacyERC20ETH_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4782,37,4782,98)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'remoteToken{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LegacyERC20ETH_remoteToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4784,37,4784,112)"), left{}(), format{}("%cremoteToken%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'supportsInterface{}(SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LegacyERC20ETH_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4786,37,4786,128)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'symbol{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LegacyERC20ETH_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4788,37,4788,102)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'totalSupply{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LegacyERC20ETH_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4790,37,4790,112)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'transfer{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_LegacyERC20ETH_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4792,37,4792,118)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyERC20ETH'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_LegacyERC20ETH_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4794,37,4794,134)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyMessagePasser{}(SortLegacyMessagePasserContract{}, SortLegacyMessagePasserMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_LegacyMessagePasser"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4944,26,4944,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'LegacyMessagePasser'Unds'passMessageToL1{}(SortBytes{}) : SortLegacyMessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LegacyMessagePasser_passMessageToL1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4946,42,4946,140)"), left{}(), format{}("%cpassMessageToL1%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyMessagePasser'Unds'sentMessages{}(SortInt{}) : SortLegacyMessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LegacyMessagePasser_sentMessages"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4948,42,4948,128)"), left{}(), format{}("%csentMessages%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LegacyMessagePasser'Unds'version{}() : SortLegacyMessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LegacyMessagePasser_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4950,42,4950,114)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Machinery{}(SortMachineryContract{}, SortMachineryMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Machinery"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4985,26,4985,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'Machinery'Unds'IS'Unds'TEST{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Machinery_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4987,32,4987,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Machinery'Unds'failed{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Machinery_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4989,32,4989,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Machinery'Unds'testAssertFalse{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Machinery_testAssertFalse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4991,32,4991,110)"), left{}(), format{}("%ctestAssertFalse%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Machinery'Unds'testAssertTrue{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Machinery_testAssertTrue"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4993,32,4993,108)"), left{}(), format{}("%ctestAssertTrue%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Machinery'Unds'testAssume{}(SortInt{}) : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Machinery_testAssume"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4995,32,4995,104)"), left{}(), format{}("%ctestAssume%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Machinery'Unds'testCallAssertTrueExternal{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Machinery_testCallAssertTrueExternal"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4997,32,4997,132)"), left{}(), format{}("%ctestCallAssertTrueExternal%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Machinery'Unds'testNoOperation{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Machinery_testNoOperation"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4999,32,4999,110)"), left{}(), format{}("%ctestNoOperation%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Machinery'Unds'testPassByteArrayInCalldata{}(SortBytes{}) : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Machinery_testPassByteArrayInCalldata"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5001,32,5001,144)"), left{}(), format{}("%ctestPassByteArrayInCalldata%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Machinery'Unds'testPassByteArrayInMemory{}(SortBytes{}) : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Machinery_testPassByteArrayInMemory"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5003,32,5003,140)"), left{}(), format{}("%ctestPassByteArrayInMemory%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered{}(SortMeteredContract{}, SortMeteredMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Metered"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5101,26,5101,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'Metered'Unds'BASE'Unds'FEE'Unds'MAX'Unds'CHANGE'Unds'DENOMINATOR{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_BASE_FEE_MAX_CHANGE_DENOMINATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5103,30,5103,138)"), left{}(), format{}("%cBASE_FEE_MAX_CHANGE_DENOMINATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'ELASTICITY'Unds'MULTIPLIER{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_ELASTICITY_MULTIPLIER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5105,30,5105,118)"), left{}(), format{}("%cELASTICITY_MULTIPLIER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'INITIAL'Unds'BASE'Unds'FEE{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_INITIAL_BASE_FEE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5107,30,5107,108)"), left{}(), format{}("%cINITIAL_BASE_FEE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'IS'Unds'TEST{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5109,30,5109,90)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_MAX_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5111,30,5111,112)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'MINIMUM'Unds'BASE'Unds'FEE{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_MINIMUM_BASE_FEE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5113,30,5113,108)"), left{}(), format{}("%cMINIMUM_BASE_FEE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'TARGET'Unds'RESOURCE'Unds'LIMIT{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_TARGET_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5115,30,5115,118)"), left{}(), format{}("%cTARGET_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_Metered_depositTransaction"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5117,30,5117,154)"), left{}(), format{}("%cdepositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'failed{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5119,30,5119,88)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'init{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_init"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5121,30,5121,84)"), left{}(), format{}("%cinit%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'params{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_params"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5123,30,5123,88)"), left{}(), format{}("%cparams%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'setUp{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Metered_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5125,30,5125,86)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("method_Metered_test_depositTransaction"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5127,30,5127,180)"), left{}(), format{}("%ctest_depositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_Metered_test_depositTransaction_emit_creationFalse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5129,30,5129,194)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse'Unds'simplified{}(SortInt{}, SortInt{}, SortInt{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Metered_test_depositTransaction_emit_creationFalse_simplified"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5131,30,5131,202)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse_simplified%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue{}(SortInt{}, SortInt{}, SortBytes{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Metered_test_depositTransaction_emit_creationTrue"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5133,30,5133,184)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue'Unds'simplified{}(SortInt{}, SortInt{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Metered_test_depositTransaction_emit_creationTrue_simplified"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5135,30,5135,192)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue_simplified%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'sender'Unds'NotEqual'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_Metered_test_depositTransaction_emit_sender_NotEqual_origin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5137,30,5137,212)"), left{}(), format{}("%ctest_depositTransaction_emit_sender_NotEqual_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'revert{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_Metered_test_depositTransaction_revert"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5139,30,5139,170)"), left{}(), format{}("%ctest_depositTransaction_revert%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'revert'Unds'emptydata{}(SortInt{}, SortInt{}, SortInt{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Metered_test_depositTransaction_revert_emptydata"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5141,30,5141,176)"), left{}(), format{}("%ctest_depositTransaction_revert_emptydata%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Metered'Unds'test'Unds'metered{}(SortInt{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Metered_test_metered"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5143,30,5143,104)"), left{}(), format{}("%ctest_metered%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator{}(SortMigrationSystemDictatorContract{}, SortMigrationSystemDictatorMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_MigrationSystemDictator"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5329,26,5329,154)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'config{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MigrationSystemDictator_config"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5331,46,5331,120)"), left{}(), format{}("%cconfig%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'currentStep{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MigrationSystemDictator_currentStep"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5333,46,5333,130)"), left{}(), format{}("%ccurrentStep%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'owner{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MigrationSystemDictator_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5335,46,5335,118)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'renounceOwnership{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MigrationSystemDictator_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5337,46,5337,142)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step1{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MigrationSystemDictator_step1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5339,46,5339,118)"), left{}(), format{}("%cstep1%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step2{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MigrationSystemDictator_step2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5341,46,5341,118)"), left{}(), format{}("%cstep2%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step3{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MigrationSystemDictator_step3"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5343,46,5343,118)"), left{}(), format{}("%cstep3%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step4{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MigrationSystemDictator_step4"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5345,46,5345,118)"), left{}(), format{}("%cstep4%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step5{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MigrationSystemDictator_step5"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5347,46,5347,118)"), left{}(), format{}("%cstep5%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step6{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MigrationSystemDictator_step6"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5349,46,5349,118)"), left{}(), format{}("%cstep6%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MigrationSystemDictator'Unds'transferOwnership{}(SortInt{}) : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_MigrationSystemDictator_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5351,46,5351,146)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20{}(SortOptimismMintableERC20Contract{}, SortOptimismMintableERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_OptimismMintableERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5433,26,5433,148)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'OptimismMintableERC20Factory{}(SortOptimismMintableERC20FactoryContract{}, SortOptimismMintableERC20FactoryMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_OptimismMintableERC20Factory"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5619,26,5619,169)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'OptimismMintableERC20Factory'Unds'BRIDGE{}() : SortOptimismMintableERC20FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20Factory_BRIDGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5621,51,5621,130)"), left{}(), format{}("%cBRIDGE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20Factory'Unds'bridge{}() : SortOptimismMintableERC20FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20Factory_bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5623,51,5623,130)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20Factory'Unds'createOptimismMintableERC20{}(SortInt{}, SortString{}, SortString{}) : SortOptimismMintableERC20FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_OptimismMintableERC20Factory_createOptimismMintableERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5625,51,5625,198)"), left{}(), format{}("%ccreateOptimismMintableERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20Factory'Unds'createStandardL2Token{}(SortInt{}, SortString{}, SortString{}) : SortOptimismMintableERC20FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_OptimismMintableERC20Factory_createStandardL2Token"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5627,51,5627,186)"), left{}(), format{}("%ccreateStandardL2Token%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20Factory'Unds'version{}() : SortOptimismMintableERC20FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20Factory_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5629,51,5629,132)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'allowance{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC20_allowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5435,44,5435,134)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'approve{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC20_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5437,44,5437,130)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'balanceOf{}(SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismMintableERC20_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5439,44,5439,126)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'bridge{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20_bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5441,44,5441,116)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'burn{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC20_burn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5443,44,5443,124)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'decimals{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5445,44,5445,120)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC20_decreaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5447,44,5447,150)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC20_increaseAllowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5449,44,5449,150)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'l1Token{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20_l1Token"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5451,44,5451,118)"), left{}(), format{}("%cl1Token%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'l2Bridge{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20_l2Bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5453,44,5453,120)"), left{}(), format{}("%cl2Bridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'mint{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC20_mint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5455,44,5455,124)"), left{}(), format{}("%cmint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'name{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5457,44,5457,112)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'remoteToken{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20_remoteToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5459,44,5459,126)"), left{}(), format{}("%cremoteToken%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'supportsInterface{}(SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismMintableERC20_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5461,44,5461,142)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'symbol{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5463,44,5463,116)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'totalSupply{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC20_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5465,44,5465,126)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'transfer{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC20_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5467,44,5467,132)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC20'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_OptimismMintableERC20_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5469,44,5469,148)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721{}(SortOptimismMintableERC721Contract{}, SortOptimismMintableERC721Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_OptimismMintableERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5676,26,5676,151)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'OptimismMintableERC721Factory{}(SortOptimismMintableERC721FactoryContract{}, SortOptimismMintableERC721FactoryMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_OptimismMintableERC721Factory"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5927,26,5927,172)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'BRIDGE{}() : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721Factory_BRIDGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5929,52,5929,132)"), left{}(), format{}("%cBRIDGE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'REMOTE'Unds'CHAIN'Unds'ID{}() : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721Factory_REMOTE_CHAIN_ID"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5931,52,5931,150)"), left{}(), format{}("%cREMOTE_CHAIN_ID%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'bridge{}() : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721Factory_bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5933,52,5933,132)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'createOptimismMintableERC721{}(SortInt{}, SortString{}, SortString{}) : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_OptimismMintableERC721Factory_createOptimismMintableERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5935,52,5935,202)"), left{}(), format{}("%ccreateOptimismMintableERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'isOptimismMintableERC721{}(SortInt{}) : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismMintableERC721Factory_isOptimismMintableERC721"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5937,52,5937,172)"), left{}(), format{}("%cisOptimismMintableERC721%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'remoteChainId{}() : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721Factory_remoteChainId"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5939,52,5939,146)"), left{}(), format{}("%cremoteChainId%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'version{}() : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721Factory_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5941,52,5941,134)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'BRIDGE{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721_BRIDGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5678,45,5678,118)"), left{}(), format{}("%cBRIDGE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'REMOTE'Unds'CHAIN'Unds'ID{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721_REMOTE_CHAIN_ID"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5680,45,5680,136)"), left{}(), format{}("%cREMOTE_CHAIN_ID%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'REMOTE'Unds'TOKEN{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721_REMOTE_TOKEN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5682,45,5682,130)"), left{}(), format{}("%cREMOTE_TOKEN%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'approve{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC721_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5684,45,5684,132)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'balanceOf{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismMintableERC721_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5686,45,5686,128)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'baseTokenURI{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721_baseTokenURI"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5688,45,5688,130)"), left{}(), format{}("%cbaseTokenURI%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'bridge{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721_bridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5690,45,5690,118)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'burn{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC721_burn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5692,45,5692,126)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'getApproved{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismMintableERC721_getApproved"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5694,45,5694,132)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC721_isApprovedForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5696,45,5696,150)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'name{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5698,45,5698,114)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'ownerOf{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismMintableERC721_ownerOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5700,45,5700,124)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'remoteChainId{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721_remoteChainId"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5702,45,5702,132)"), left{}(), format{}("%cremoteChainId%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'remoteToken{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721_remoteToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5704,45,5704,128)"), left{}(), format{}("%cremoteToken%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'safeMint{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC721_safeMint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5706,45,5706,134)"), left{}(), format{}("%csafeMint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_OptimismMintableERC721_safeTransferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5708,45,5708,158)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC721_setApprovalForAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5712,45,5712,152)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'supportsInterface{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismMintableERC721_supportsInterface"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5714,45,5714,144)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'symbol{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5716,45,5716,118)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'tokenByIndex{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismMintableERC721_tokenByIndex"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5718,45,5718,134)"), left{}(), format{}("%ctokenByIndex%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'tokenOfOwnerByIndex{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_OptimismMintableERC721_tokenOfOwnerByIndex"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5720,45,5720,156)"), left{}(), format{}("%ctokenOfOwnerByIndex%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'tokenURI{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismMintableERC721_tokenURI"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5722,45,5722,126)"), left{}(), format{}("%ctokenURI%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'totalSupply{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismMintableERC721_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5724,45,5724,128)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismMintableERC721'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_OptimismMintableERC721_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5726,45,5726,150)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal{}(SortOptimismPortalContract{}, SortOptimismPortalMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_OptimismPortal"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6000,26,6000,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'BASE'Unds'FEE'Unds'MAX'Unds'CHANGE'Unds'DENOMINATOR{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_BASE_FEE_MAX_CHANGE_DENOMINATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6002,37,6002,152)"), left{}(), format{}("%cBASE_FEE_MAX_CHANGE_DENOMINATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'ELASTICITY'Unds'MULTIPLIER{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_ELASTICITY_MULTIPLIER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6004,37,6004,132)"), left{}(), format{}("%cELASTICITY_MULTIPLIER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'FINALIZATION'Unds'PERIOD'Unds'SECONDS{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_FINALIZATION_PERIOD_SECONDS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6006,37,6006,144)"), left{}(), format{}("%cFINALIZATION_PERIOD_SECONDS%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'INITIAL'Unds'BASE'Unds'FEE{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_INITIAL_BASE_FEE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6008,37,6008,122)"), left{}(), format{}("%cINITIAL_BASE_FEE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'L2'Unds'ORACLE{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_L2_ORACLE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6010,37,6010,108)"), left{}(), format{}("%cL2_ORACLE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_MAX_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6012,37,6012,126)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'MINIMUM'Unds'BASE'Unds'FEE{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_MINIMUM_BASE_FEE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6014,37,6014,122)"), left{}(), format{}("%cMINIMUM_BASE_FEE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'TARGET'Unds'RESOURCE'Unds'LIMIT{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_TARGET_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6016,37,6016,132)"), left{}(), format{}("%cTARGET_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_OptimismPortal_depositTransaction"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6018,37,6018,168)"), left{}(), format{}("%cdepositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'donateETH{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_donateETH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6020,37,6020,108)"), left{}(), format{}("%cdonateETH%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'finalizeWithdrawalTransaction{}(SortK{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismPortal_finalizeWithdrawalTransaction"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6022,37,6022,150)"), left{}(), format{}("%cfinalizeWithdrawalTransaction%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'finalizedWithdrawals{}(SortInt{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismPortal_finalizedWithdrawals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6024,37,6024,134)"), left{}(), format{}("%cfinalizedWithdrawals%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'initialize{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_initialize"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6026,37,6026,110)"), left{}(), format{}("%cinitialize%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'isBlockFinalized{}(SortInt{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismPortal_isBlockFinalized"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6028,37,6028,126)"), left{}(), format{}("%cisBlockFinalized%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'l2Sender{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_l2Sender"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6030,37,6030,106)"), left{}(), format{}("%cl2Sender%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'params{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_params"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6032,37,6032,102)"), left{}(), format{}("%cparams%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'proveWithdrawalTransaction{}(SortK{}, SortInt{}, SortK{}, SortK{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_OptimismPortal_proveWithdrawalTransaction"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6034,37,6034,164)"), left{}(), format{}("%cproveWithdrawalTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'provenWithdrawals{}(SortInt{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OptimismPortal_provenWithdrawals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6036,37,6036,128)"), left{}(), format{}("%cprovenWithdrawals%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptimismPortal'Unds'version{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptimismPortal_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6038,37,6038,104)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptmimismPortalTest{}(SortOptmimismPortalTestContract{}, SortOptmimismPortalTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_OptmimismPortalTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6170,26,6170,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'OptmimismPortalTest'Unds'IS'Unds'TEST{}() : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptmimismPortalTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6172,42,6172,114)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptmimismPortalTest'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptmimismPortalTest_MAX_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6174,42,6174,136)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptmimismPortalTest'Unds'failed{}() : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptmimismPortalTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6176,42,6176,112)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptmimismPortalTest'Unds'setUp{}() : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OptmimismPortalTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6178,42,6178,110)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_OptmimismPortalTest_test_depositTransaction_emit_creationFalse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6180,42,6180,218)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue{}(SortInt{}, SortInt{}, SortBytes{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_OptmimismPortalTest_test_depositTransaction_emit_creationTrue"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6182,42,6182,208)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'emit'Unds'sender'Unds'NotEqual'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_OptmimismPortalTest_test_depositTransaction_emit_sender_NotEqual_origin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6184,42,6184,236)"), left{}(), format{}("%ctest_depositTransaction_emit_sender_NotEqual_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'revert{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_OptmimismPortalTest_test_depositTransaction_revert"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6186,42,6186,194)"), left{}(), format{}("%ctest_depositTransaction_revert%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'revert'Unds'bytes32data{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_OptmimismPortalTest_test_depositTransaction_revert_bytes32data"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6188,42,6188,212)"), left{}(), format{}("%ctest_depositTransaction_revert_bytes32data%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'revert'Unds'emptydata{}(SortInt{}, SortInt{}, SortInt{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_OptmimismPortalTest_test_depositTransaction_revert_emptydata"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6190,42,6190,200)"), left{}(), format{}("%ctest_depositTransaction_revert_emptydata%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Ownable{}(SortOwnableContract{}, SortOwnableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Ownable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6293,26,6293,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'OwnableUpgradeable{}(SortOwnableUpgradeableContract{}, SortOwnableUpgradeableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_OwnableUpgradeable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6333,26,6333,139)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'OwnableUpgradeable'Unds'owner{}() : SortOwnableUpgradeableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnableUpgradeable_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6335,41,6335,108)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnableUpgradeable'Unds'renounceOwnership{}() : SortOwnableUpgradeableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnableUpgradeable_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6337,41,6337,132)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnableUpgradeable'Unds'transferOwnership{}(SortInt{}) : SortOwnableUpgradeableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_OwnableUpgradeable_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6339,41,6339,136)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Ownable'Unds'owner{}() : SortOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Ownable_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6295,30,6295,86)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Ownable'Unds'renounceOwnership{}() : SortOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Ownable_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6297,30,6297,110)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Ownable'Unds'transferOwnership{}(SortInt{}) : SortOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Ownable_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6299,30,6299,114)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'PausableUpgradeable{}(SortPausableUpgradeableContract{}, SortPausableUpgradeableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_PausableUpgradeable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6373,26,6373,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'PausableUpgradeable'Unds'paused{}() : SortPausableUpgradeableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PausableUpgradeable_paused"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6375,42,6375,112)"), left{}(), format{}("%cpaused%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PortalSender{}(SortPortalSenderContract{}, SortPortalSenderMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_PortalSender"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6396,26,6396,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'PortalSender'Unds'PORTAL{}() : SortPortalSenderMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PortalSender_PORTAL"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6398,35,6398,98)"), left{}(), format{}("%cPORTAL%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PortalSender'Unds'donate{}() : SortPortalSenderMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PortalSender_donate"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6400,35,6400,98)"), left{}(), format{}("%cdonate%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Proxy{}(SortProxyContract{}, SortProxyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Proxy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6440,26,6440,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ProxyAdmin{}(SortProxyAdminContract{}, SortProxyAdminMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ProxyAdmin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6562,26,6562,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'addressManager{}() : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ProxyAdmin_addressManager"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6564,33,6564,110)"), left{}(), format{}("%caddressManager%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'changeProxyAdmin{}(SortInt{}, SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ProxyAdmin_changeProxyAdmin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6566,33,6566,126)"), left{}(), format{}("%cchangeProxyAdmin%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'getProxyAdmin{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ProxyAdmin_getProxyAdmin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6568,33,6568,112)"), left{}(), format{}("%cgetProxyAdmin%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'getProxyImplementation{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ProxyAdmin_getProxyImplementation"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6570,33,6570,130)"), left{}(), format{}("%cgetProxyImplementation%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'implementationName{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ProxyAdmin_implementationName"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6572,33,6572,122)"), left{}(), format{}("%cimplementationName%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'isUpgrading{}() : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ProxyAdmin_isUpgrading"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6574,33,6574,104)"), left{}(), format{}("%cisUpgrading%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'owner{}() : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ProxyAdmin_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6576,33,6576,92)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'proxyType{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ProxyAdmin_proxyType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6578,33,6578,104)"), left{}(), format{}("%cproxyType%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'renounceOwnership{}() : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ProxyAdmin_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6580,33,6580,116)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'setAddress{}(SortString{}, SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ProxyAdmin_setAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6582,33,6582,117)"), left{}(), format{}("%csetAddress%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'setAddressManager{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ProxyAdmin_setAddressManager"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6584,33,6584,120)"), left{}(), format{}("%csetAddressManager%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'setImplementationName{}(SortInt{}, SortString{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ProxyAdmin_setImplementationName"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6586,33,6586,139)"), left{}(), format{}("%csetImplementationName%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'setProxyType{}(SortInt{}, SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ProxyAdmin_setProxyType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6588,33,6588,118)"), left{}(), format{}("%csetProxyType%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'setUpgrading{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ProxyAdmin_setUpgrading"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6590,33,6590,110)"), left{}(), format{}("%csetUpgrading%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'transferOwnership{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ProxyAdmin_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6592,33,6592,120)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'upgrade{}(SortInt{}, SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ProxyAdmin_upgrade"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6594,33,6594,108)"), left{}(), format{}("%cupgrade%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ProxyAdmin'Unds'upgradeAndCall{}(SortInt{}, SortInt{}, SortBytes{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_ProxyAdmin_upgradeAndCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6596,33,6596,136)"), left{}(), format{}("%cupgradeAndCall%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Proxy'Unds'admin{}() : SortProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Proxy_admin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6442,28,6442,82)"), left{}(), format{}("%cadmin%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Proxy'Unds'changeAdmin{}(SortInt{}) : SortProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Proxy_changeAdmin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6444,28,6444,98)"), left{}(), format{}("%cchangeAdmin%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Proxy'Unds'implementation{}() : SortProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Proxy_implementation"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6446,28,6446,100)"), left{}(), format{}("%cimplementation%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Proxy'Unds'upgradeTo{}(SortInt{}) : SortProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Proxy_upgradeTo"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6448,28,6448,94)"), left{}(), format{}("%cupgradeTo%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Proxy'Unds'upgradeToAndCall{}(SortInt{}, SortBytes{}) : SortProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Proxy_upgradeToAndCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6450,28,6450,122)"), left{}(), format{}("%cupgradeToAndCall%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ResourceMetering{}(SortResourceMeteringContract{}, SortResourceMeteringMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ResourceMetering"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6787,26,6787,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ResourceMetering'Unds'BASE'Unds'FEE'Unds'MAX'Unds'CHANGE'Unds'DENOMINATOR{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ResourceMetering_BASE_FEE_MAX_CHANGE_DENOMINATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6789,39,6789,156)"), left{}(), format{}("%cBASE_FEE_MAX_CHANGE_DENOMINATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ResourceMetering'Unds'ELASTICITY'Unds'MULTIPLIER{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ResourceMetering_ELASTICITY_MULTIPLIER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6791,39,6791,136)"), left{}(), format{}("%cELASTICITY_MULTIPLIER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ResourceMetering'Unds'INITIAL'Unds'BASE'Unds'FEE{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ResourceMetering_INITIAL_BASE_FEE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6793,39,6793,126)"), left{}(), format{}("%cINITIAL_BASE_FEE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ResourceMetering'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ResourceMetering_MAX_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6795,39,6795,130)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ResourceMetering'Unds'MINIMUM'Unds'BASE'Unds'FEE{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ResourceMetering_MINIMUM_BASE_FEE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6797,39,6797,126)"), left{}(), format{}("%cMINIMUM_BASE_FEE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ResourceMetering'Unds'TARGET'Unds'RESOURCE'Unds'LIMIT{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ResourceMetering_TARGET_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6799,39,6799,136)"), left{}(), format{}("%cTARGET_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ResourceMetering'Unds'params{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ResourceMetering_params"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6801,39,6801,106)"), left{}(), format{}("%cparams%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Semver{}(SortSemverContract{}, SortSemverMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Semver"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6910,26,6910,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'Semver'Unds'version{}() : SortSemverMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Semver_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6912,29,6912,88)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SequencerFeeVault{}(SortSequencerFeeVaultContract{}, SortSequencerFeeVaultMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_SequencerFeeVault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6933,26,6933,136)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SequencerFeeVault'Unds'MIN'Unds'WITHDRAWAL'Unds'AMOUNT{}() : SortSequencerFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SequencerFeeVault_MIN_WITHDRAWAL_AMOUNT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6935,40,6935,138)"), left{}(), format{}("%cMIN_WITHDRAWAL_AMOUNT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SequencerFeeVault'Unds'RECIPIENT{}() : SortSequencerFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SequencerFeeVault_RECIPIENT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6937,40,6937,114)"), left{}(), format{}("%cRECIPIENT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SequencerFeeVault'Unds'l1FeeWallet{}() : SortSequencerFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SequencerFeeVault_l1FeeWallet"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6939,40,6939,118)"), left{}(), format{}("%cl1FeeWallet%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SequencerFeeVault'Unds'version{}() : SortSequencerFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SequencerFeeVault_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6941,40,6941,110)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SequencerFeeVault'Unds'withdraw{}() : SortSequencerFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SequencerFeeVault_withdraw"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6943,40,6943,112)"), left{}(), format{}("%cwithdraw%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedOptimismPortal{}(SortSimplifiedOptimismPortalContract{}, SortSimplifiedOptimismPortalMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_SimplifiedOptimismPortal"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7040,26,7040,157)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SimplifiedOptimismPortal'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortSimplifiedOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_SimplifiedOptimismPortal_depositTransaction"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7042,47,7042,188)"), left{}(), format{}("%cdepositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedPortalTest{}(SortSimplifiedPortalTestContract{}, SortSimplifiedPortalTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_SimplifiedPortalTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7069,26,7069,145)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SimplifiedPortalTest'Unds'IS'Unds'TEST{}() : SortSimplifiedPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SimplifiedPortalTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7071,43,7071,116)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedPortalTest'Unds'failed{}() : SortSimplifiedPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SimplifiedPortalTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7073,43,7073,114)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedPortalTest'Unds'setUp{}() : SortSimplifiedPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SimplifiedPortalTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7075,43,7075,112)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedPortalTest'Unds'test'Unds'depositTransaction'Unds'revert{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortSimplifiedPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_SimplifiedPortalTest_test_depositTransaction_revert"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7077,43,7077,196)"), left{}(), format{}("%ctest_depositTransaction_revert%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedResourceMetering{}(SortSimplifiedResourceMeteringContract{}, SortSimplifiedResourceMeteringMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_SimplifiedResourceMetering"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7121,26,7121,163)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'BASE'Unds'FEE'Unds'MAX'Unds'CHANGE'Unds'DENOMINATOR{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SimplifiedResourceMetering_BASE_FEE_MAX_CHANGE_DENOMINATOR"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7123,49,7123,176)"), left{}(), format{}("%cBASE_FEE_MAX_CHANGE_DENOMINATOR%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'ELASTICITY'Unds'MULTIPLIER{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SimplifiedResourceMetering_ELASTICITY_MULTIPLIER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7125,49,7125,156)"), left{}(), format{}("%cELASTICITY_MULTIPLIER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'INITIAL'Unds'BASE'Unds'FEE{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SimplifiedResourceMetering_INITIAL_BASE_FEE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7127,49,7127,146)"), left{}(), format{}("%cINITIAL_BASE_FEE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SimplifiedResourceMetering_MAX_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7129,49,7129,150)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'MINIMUM'Unds'BASE'Unds'FEE{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SimplifiedResourceMetering_MINIMUM_BASE_FEE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7131,49,7131,146)"), left{}(), format{}("%cMINIMUM_BASE_FEE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'TARGET'Unds'RESOURCE'Unds'LIMIT{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SimplifiedResourceMetering_TARGET_RESOURCE_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7133,49,7133,156)"), left{}(), format{}("%cTARGET_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'params{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SimplifiedResourceMetering_params"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7135,49,7135,126)"), left{}(), format{}("%cparams%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StandardBridge{}(SortStandardBridgeContract{}, SortStandardBridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_StandardBridge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7192,26,7192,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'StandardBridge'Unds'MESSENGER{}() : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StandardBridge_MESSENGER"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7194,37,7194,108)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StandardBridge'Unds'OTHER'Unds'BRIDGE{}() : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StandardBridge_OTHER_BRIDGE"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7196,37,7196,114)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StandardBridge'Unds'bridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_StandardBridge_bridgeERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7198,37,7198,154)"), left{}(), format{}("%cbridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'StandardBridge'Unds'bridgeERC20To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_StandardBridge_bridgeERC20To"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7200,37,7200,166)"), left{}(), format{}("%cbridgeERC20To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'StandardBridge'Unds'bridgeETH{}(SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_StandardBridge_bridgeETH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7202,37,7202,126)"), left{}(), format{}("%cbridgeETH%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'StandardBridge'Unds'bridgeETHTo{}(SortInt{}, SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_StandardBridge_bridgeETHTo"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7204,37,7204,138)"), left{}(), format{}("%cbridgeETHTo%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'StandardBridge'Unds'deposits{}(SortInt{}, SortInt{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_StandardBridge_deposits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7206,37,7206,118)"), left{}(), format{}("%cdeposits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'StandardBridge'Unds'finalizeBridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("method_StandardBridge_finalizeBridgeERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7208,37,7208,178)"), left{}(), format{}("%cfinalizeBridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] - symbol Lblmethod'Unds'StandardBridge'Unds'finalizeBridgeETH{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_StandardBridge_finalizeBridgeETH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7210,37,7210,158)"), left{}(), format{}("%cfinalizeBridgeETH%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'StandardBridge'Unds'messenger{}() : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StandardBridge_messenger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7212,37,7212,108)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StdAssertions{}(SortStdAssertionsContract{}, SortStdAssertionsMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_StdAssertions"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7322,26,7322,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'StdAssertions'Unds'IS'Unds'TEST{}() : SortStdAssertionsMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StdAssertions_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7324,36,7324,102)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StdAssertions'Unds'failed{}() : SortStdAssertionsMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StdAssertions_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7326,36,7326,100)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig{}(SortSystemConfigContract{}, SortSystemConfigMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_SystemConfig"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7860,26,7860,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'MINIMUM'Unds'GAS'Unds'LIMIT{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SystemConfig_MINIMUM_GAS_LIMIT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7862,35,7862,120)"), left{}(), format{}("%cMINIMUM_GAS_LIMIT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'VERSION{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SystemConfig_VERSION"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7864,35,7864,100)"), left{}(), format{}("%cVERSION%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'batcherHash{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SystemConfig_batcherHash"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7866,35,7866,108)"), left{}(), format{}("%cbatcherHash%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'gasLimit{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SystemConfig_gasLimit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7868,35,7868,102)"), left{}(), format{}("%cgasLimit%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'initialize{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101"), klabel{}("method_SystemConfig_initialize"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7870,35,7870,142)"), left{}(), format{}("%cinitialize%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'overhead{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SystemConfig_overhead"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7872,35,7872,102)"), left{}(), format{}("%coverhead%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'owner{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SystemConfig_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7874,35,7874,96)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'renounceOwnership{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SystemConfig_renounceOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7876,35,7876,120)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'scalar{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SystemConfig_scalar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7878,35,7878,98)"), left{}(), format{}("%cscalar%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'setBatcherHash{}(SortInt{}) : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_SystemConfig_setBatcherHash"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7880,35,7880,118)"), left{}(), format{}("%csetBatcherHash%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'setGasConfig{}(SortInt{}, SortInt{}) : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_SystemConfig_setGasConfig"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7882,35,7882,122)"), left{}(), format{}("%csetGasConfig%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'setGasLimit{}(SortInt{}) : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_SystemConfig_setGasLimit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7884,35,7884,112)"), left{}(), format{}("%csetGasLimit%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'transferOwnership{}(SortInt{}) : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_SystemConfig_transferOwnership"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7886,35,7886,124)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SystemConfig'Unds'version{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SystemConfig_version"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7888,35,7888,100)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Test{}(SortTestContract{}, SortTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Test"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8030,26,8030,97)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'Test'Unds'IS'Unds'TEST{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Test_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8032,27,8032,84)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Test'Unds'failed{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Test_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8034,27,8034,82)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm{}(SortVmContract{}, SortVmMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8087,26,8087,91)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'VmSafe{}(SortVmSafeContract{}, SortVmSafeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_VmSafe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9181,26,9181,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'VmSafe'Unds'accesses{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_accesses"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9183,29,9183,94)"), left{}(), format{}("%caccesses%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'addr{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_addr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9185,29,9185,86)"), left{}(), format{}("%caddr%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'assume{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_assume"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9187,29,9187,90)"), left{}(), format{}("%cassume%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'broadcast{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_VmSafe_broadcast"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9189,29,9189,92)"), left{}(), format{}("%cbroadcast%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'closeFile{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_closeFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9195,29,9195,99)"), left{}(), format{}("%ccloseFile%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'deriveKey{}(SortString{}, SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_deriveKey"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9197,29,9197,107)"), left{}(), format{}("%cderiveKey%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'envAddress{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_envAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9201,29,9201,101)"), left{}(), format{}("%cenvAddress%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'envBool{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_envBool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9205,29,9205,95)"), left{}(), format{}("%cenvBool%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'envBytes{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_envBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9209,29,9209,97)"), left{}(), format{}("%cenvBytes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'envBytes32{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_envBytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9213,29,9213,112)"), left{}(), format{}("%cenvBytes32%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'envInt{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_envInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9217,29,9217,104)"), left{}(), format{}("%cenvInt%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'envString{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_envString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9221,29,9221,110)"), left{}(), format{}("%cenvString%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'envUint{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_envUint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9225,29,9225,95)"), left{}(), format{}("%cenvUint%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'ffi{}(SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_ffi"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9229,29,9229,82)"), left{}(), format{}("%cffi%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'getCode{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_getCode"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9231,29,9231,95)"), left{}(), format{}("%cgetCode%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'getDeployedCode{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_getDeployedCode"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9233,29,9233,111)"), left{}(), format{}("%cgetDeployedCode%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'getNonce{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_getNonce"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9235,29,9235,94)"), left{}(), format{}("%cgetNonce%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'getRecordedLogs{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_VmSafe_getRecordedLogs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9237,29,9237,104)"), left{}(), format{}("%cgetRecordedLogs%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'label{}(SortInt{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_label"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9239,29,9239,99)"), left{}(), format{}("%clabel%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'load{}(SortInt{}, SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_load"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9241,29,9241,94)"), left{}(), format{}("%cload%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'parseAddress{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_parseAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9243,29,9243,105)"), left{}(), format{}("%cparseAddress%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'parseBool{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_parseBool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9245,29,9245,99)"), left{}(), format{}("%cparseBool%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'parseBytes{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_parseBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9247,29,9247,101)"), left{}(), format{}("%cparseBytes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'parseBytes32{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_parseBytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9249,29,9249,105)"), left{}(), format{}("%cparseBytes32%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'parseInt{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_parseInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9251,29,9251,97)"), left{}(), format{}("%cparseInt%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'parseJson{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_parseJson"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9253,29,9253,99)"), left{}(), format{}("%cparseJson%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'parseUint{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_parseUint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9257,29,9257,99)"), left{}(), format{}("%cparseUint%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'projectRoot{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_VmSafe_projectRoot"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9259,29,9259,96)"), left{}(), format{}("%cprojectRoot%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'readFile{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_readFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9261,29,9261,97)"), left{}(), format{}("%creadFile%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'readFileBinary{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_readFileBinary"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9263,29,9263,109)"), left{}(), format{}("%creadFileBinary%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'readLine{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_readLine"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9265,29,9265,97)"), left{}(), format{}("%creadLine%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'record{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_VmSafe_record"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9267,29,9267,86)"), left{}(), format{}("%crecord%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'recordLogs{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_VmSafe_recordLogs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9269,29,9269,94)"), left{}(), format{}("%crecordLogs%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'rememberKey{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_rememberKey"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9271,29,9271,100)"), left{}(), format{}("%crememberKey%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'removeFile{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_removeFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9273,29,9273,101)"), left{}(), format{}("%cremoveFile%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'rpcUrl{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_rpcUrl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9275,29,9275,93)"), left{}(), format{}("%crpcUrl%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'rpcUrlStructs{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_VmSafe_rpcUrlStructs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9277,29,9277,100)"), left{}(), format{}("%crpcUrlStructs%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'rpcUrls{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_VmSafe_rpcUrls"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9279,29,9279,88)"), left{}(), format{}("%crpcUrls%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'serializeAddress{}(SortString{}, SortString{}, SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_VmSafe_serializeAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9281,29,9281,130)"), left{}(), format{}("%cserializeAddress%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'serializeBool{}(SortString{}, SortString{}, SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_VmSafe_serializeBool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9285,29,9285,124)"), left{}(), format{}("%cserializeBool%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'serializeBytes{}(SortString{}, SortString{}, SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_VmSafe_serializeBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9289,29,9289,126)"), left{}(), format{}("%cserializeBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'serializeBytes32{}(SortString{}, SortString{}, SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_VmSafe_serializeBytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9293,29,9293,130)"), left{}(), format{}("%cserializeBytes32%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'serializeInt{}(SortString{}, SortString{}, SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_VmSafe_serializeInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9297,29,9297,124)"), left{}(), format{}("%cserializeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'serializeString{}(SortString{}, SortString{}, SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_VmSafe_serializeString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9301,29,9301,128)"), left{}(), format{}("%cserializeString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'serializeUint{}(SortString{}, SortString{}, SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_VmSafe_serializeUint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9305,29,9305,126)"), left{}(), format{}("%cserializeUint%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'setEnv{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_setEnv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9309,29,9309,104)"), left{}(), format{}("%csetEnv%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'sign{}(SortInt{}, SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_sign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9311,29,9311,94)"), left{}(), format{}("%csign%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'startBroadcast{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_VmSafe_startBroadcast"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9313,29,9313,102)"), left{}(), format{}("%cstartBroadcast%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'stopBroadcast{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_VmSafe_stopBroadcast"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9319,29,9319,100)"), left{}(), format{}("%cstopBroadcast%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'toString{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_VmSafe_toString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9321,29,9321,94)"), left{}(), format{}("%ctoString%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'writeFile{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_writeFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9333,29,9333,110)"), left{}(), format{}("%cwriteFile%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'writeFileBinary{}(SortString{}, SortBytes{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_writeFileBinary"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9335,29,9335,125)"), left{}(), format{}("%cwriteFileBinary%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'writeJson{}(SortString{}, SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_VmSafe_writeJson"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9337,29,9337,121)"), left{}(), format{}("%cwriteJson%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'VmSafe'Unds'writeLine{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_VmSafe_writeLine"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9341,29,9341,110)"), left{}(), format{}("%cwriteLine%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'accesses{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_accesses"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8089,25,8089,86)"), left{}(), format{}("%caccesses%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'activeFork{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_activeFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8091,25,8091,86)"), left{}(), format{}("%cactiveFork%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'addr{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_addr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8093,25,8093,78)"), left{}(), format{}("%caddr%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'allowCheatcodes{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_allowCheatcodes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8095,25,8095,100)"), left{}(), format{}("%callowCheatcodes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'assume{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_assume"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8097,25,8097,82)"), left{}(), format{}("%cassume%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'broadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_broadcast"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8099,25,8099,84)"), left{}(), format{}("%cbroadcast%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'chainId{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_chainId"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8105,25,8105,84)"), left{}(), format{}("%cchainId%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'clearMockedCalls{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_clearMockedCalls"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8107,25,8107,98)"), left{}(), format{}("%cclearMockedCalls%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'closeFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_closeFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8109,25,8109,91)"), left{}(), format{}("%ccloseFile%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'coinbase{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_coinbase"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8111,25,8111,86)"), left{}(), format{}("%ccoinbase%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'createFork{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_createFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8113,25,8113,93)"), left{}(), format{}("%ccreateFork%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'createSelectFork{}(SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_createSelectFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8119,25,8119,113)"), left{}(), format{}("%ccreateSelectFork%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'deal{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_deal"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8125,25,8125,86)"), left{}(), format{}("%cdeal%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'deriveKey{}(SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_deriveKey"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8127,25,8127,99)"), left{}(), format{}("%cderiveKey%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'difficulty{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_difficulty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8131,25,8131,90)"), left{}(), format{}("%cdifficulty%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envAddress{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_envAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8133,25,8133,93)"), left{}(), format{}("%cenvAddress%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envBool{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_envBool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8137,25,8137,87)"), left{}(), format{}("%cenvBool%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envBytes{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_envBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8141,25,8141,89)"), left{}(), format{}("%cenvBytes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envBytes32{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_envBytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8145,25,8145,104)"), left{}(), format{}("%cenvBytes32%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envInt{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_envInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8149,25,8149,96)"), left{}(), format{}("%cenvInt%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envString{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_envString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8153,25,8153,102)"), left{}(), format{}("%cenvString%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envUint{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_envUint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8157,25,8157,87)"), left{}(), format{}("%cenvUint%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'etch{}(SortInt{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_etch"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8161,25,8161,92)"), left{}(), format{}("%cetch%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'expectCall{}(SortInt{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_expectCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8163,25,8163,104)"), left{}(), format{}("%cexpectCall%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'expectEmit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_Vm_expectEmit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8167,25,8167,114)"), left{}(), format{}("%cexpectEmit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'expectRevert{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_expectRevert"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8171,25,8171,94)"), left{}(), format{}("%cexpectRevert%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'fee{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_fee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8177,25,8177,76)"), left{}(), format{}("%cfee%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'ffi{}(SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_ffi"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8179,25,8179,74)"), left{}(), format{}("%cffi%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'getCode{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_getCode"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8181,25,8181,87)"), left{}(), format{}("%cgetCode%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'getDeployedCode{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_getDeployedCode"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8183,25,8183,103)"), left{}(), format{}("%cgetDeployedCode%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'getNonce{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_getNonce"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8185,25,8185,86)"), left{}(), format{}("%cgetNonce%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'getRecordedLogs{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_getRecordedLogs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8187,25,8187,96)"), left{}(), format{}("%cgetRecordedLogs%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'isPersistent{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_isPersistent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8189,25,8189,94)"), left{}(), format{}("%cisPersistent%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'label{}(SortInt{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_label"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8191,25,8191,91)"), left{}(), format{}("%clabel%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'load{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_load"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8193,25,8193,86)"), left{}(), format{}("%cload%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'makePersistent{}(SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_makePersistent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8195,25,8195,96)"), left{}(), format{}("%cmakePersistent%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'mockCall{}(SortInt{}, SortInt{}, SortBytes{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_Vm_mockCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8203,25,8203,122)"), left{}(), format{}("%cmockCall%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'parseAddress{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_parseAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8207,25,8207,97)"), left{}(), format{}("%cparseAddress%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'parseBool{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_parseBool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8209,25,8209,91)"), left{}(), format{}("%cparseBool%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'parseBytes{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_parseBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8211,25,8211,93)"), left{}(), format{}("%cparseBytes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'parseBytes32{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_parseBytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8213,25,8213,97)"), left{}(), format{}("%cparseBytes32%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'parseInt{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_parseInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8215,25,8215,89)"), left{}(), format{}("%cparseInt%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'parseJson{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_parseJson"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8217,25,8217,91)"), left{}(), format{}("%cparseJson%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'parseUint{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_parseUint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8221,25,8221,91)"), left{}(), format{}("%cparseUint%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'prank{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_prank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8223,25,8223,88)"), left{}(), format{}("%cprank%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'projectRoot{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_projectRoot"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8227,25,8227,88)"), left{}(), format{}("%cprojectRoot%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'readFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_readFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8229,25,8229,89)"), left{}(), format{}("%creadFile%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'readFileBinary{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_readFileBinary"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8231,25,8231,101)"), left{}(), format{}("%creadFileBinary%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'readLine{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_readLine"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8233,25,8233,89)"), left{}(), format{}("%creadLine%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'record{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_record"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8235,25,8235,78)"), left{}(), format{}("%crecord%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'recordLogs{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_recordLogs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8237,25,8237,86)"), left{}(), format{}("%crecordLogs%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'rememberKey{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_rememberKey"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8239,25,8239,92)"), left{}(), format{}("%crememberKey%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'removeFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_removeFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8241,25,8241,93)"), left{}(), format{}("%cremoveFile%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'revertTo{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_revertTo"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8243,25,8243,86)"), left{}(), format{}("%crevertTo%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'revokePersistent{}(SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_revokePersistent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8245,25,8245,100)"), left{}(), format{}("%crevokePersistent%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'roll{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_roll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8249,25,8249,78)"), left{}(), format{}("%croll%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'rollFork{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_rollFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8251,25,8251,86)"), left{}(), format{}("%crollFork%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'rpcUrl{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_rpcUrl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8259,25,8259,85)"), left{}(), format{}("%crpcUrl%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'rpcUrlStructs{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_rpcUrlStructs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8261,25,8261,92)"), left{}(), format{}("%crpcUrlStructs%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'rpcUrls{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_rpcUrls"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8263,25,8263,80)"), left{}(), format{}("%crpcUrls%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'selectFork{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_selectFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8265,25,8265,90)"), left{}(), format{}("%cselectFork%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'serializeAddress{}(SortString{}, SortString{}, SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Vm_serializeAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8267,25,8267,122)"), left{}(), format{}("%cserializeAddress%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'serializeBool{}(SortString{}, SortString{}, SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Vm_serializeBool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8271,25,8271,116)"), left{}(), format{}("%cserializeBool%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'serializeBytes{}(SortString{}, SortString{}, SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Vm_serializeBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8275,25,8275,118)"), left{}(), format{}("%cserializeBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'serializeBytes32{}(SortString{}, SortString{}, SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Vm_serializeBytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8279,25,8279,122)"), left{}(), format{}("%cserializeBytes32%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'serializeInt{}(SortString{}, SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Vm_serializeInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8283,25,8283,116)"), left{}(), format{}("%cserializeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'serializeString{}(SortString{}, SortString{}, SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Vm_serializeString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8287,25,8287,120)"), left{}(), format{}("%cserializeString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'serializeUint{}(SortString{}, SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Vm_serializeUint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8291,25,8291,118)"), left{}(), format{}("%cserializeUint%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'setEnv{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_setEnv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8295,25,8295,96)"), left{}(), format{}("%csetEnv%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'setNonce{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_setNonce"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8297,25,8297,94)"), left{}(), format{}("%csetNonce%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'sign{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_sign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8299,25,8299,86)"), left{}(), format{}("%csign%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'snapshot{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_snapshot"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8301,25,8301,82)"), left{}(), format{}("%csnapshot%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'startBroadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_startBroadcast"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8303,25,8303,94)"), left{}(), format{}("%cstartBroadcast%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'startPrank{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_startPrank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8309,25,8309,90)"), left{}(), format{}("%cstartPrank%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'stopBroadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_stopBroadcast"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8313,25,8313,92)"), left{}(), format{}("%cstopBroadcast%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'stopPrank{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_stopPrank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8315,25,8315,84)"), left{}(), format{}("%cstopPrank%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'store{}(SortInt{}, SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Vm_store"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8317,25,8317,96)"), left{}(), format{}("%cstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'toString{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_toString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8319,25,8319,86)"), left{}(), format{}("%ctoString%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'transact{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_transact"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8331,25,8331,94)"), left{}(), format{}("%ctransact%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'warp{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_warp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8335,25,8335,78)"), left{}(), format{}("%cwarp%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'writeFile{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_writeFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8337,25,8337,102)"), left{}(), format{}("%cwriteFile%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'writeFileBinary{}(SortString{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_writeFileBinary"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8339,25,8339,117)"), left{}(), format{}("%cwriteFileBinary%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'writeJson{}(SortString{}, SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Vm_writeJson"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8341,25,8341,113)"), left{}(), format{}("%cwriteJson%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'writeLine{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_writeLine"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8345,25,8345,102)"), left{}(), format{}("%cwriteLine%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9{}(SortWETH9Contract{}, SortWETH9Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_WETH9"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9828,26,9828,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'WETH9'Unds'allowance{}(SortInt{}, SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_WETH9_allowance"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9830,28,9830,102)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9'Unds'approve{}(SortInt{}, SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_WETH9_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9832,28,9832,98)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9'Unds'balanceOf{}(SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_WETH9_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9834,28,9834,94)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9'Unds'decimals{}() : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_WETH9_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9836,28,9836,88)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9'Unds'deposit{}() : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_WETH9_deposit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9838,28,9838,86)"), left{}(), format{}("%cdeposit%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9'Unds'name{}() : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_WETH9_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9840,28,9840,80)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9'Unds'symbol{}() : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_WETH9_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9842,28,9842,84)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9'Unds'totalSupply{}() : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_WETH9_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9844,28,9844,94)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9'Unds'transfer{}(SortInt{}, SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_WETH9_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9846,28,9846,100)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_WETH9_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9848,28,9848,116)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'WETH9'Unds'withdraw{}(SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_WETH9_withdraw"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9850,28,9850,92)"), left{}(), format{}("%cwithdraw%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError{}(SortStdErrorContract{}, SortStdErrorMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_stdError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7379,26,7379,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'stdError'Unds'arithmeticError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_arithmeticError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7381,31,7381,108)"), left{}(), format{}("%carithmeticError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'assertionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_assertionError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7383,31,7383,106)"), left{}(), format{}("%cassertionError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'divisionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_divisionError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7385,31,7385,104)"), left{}(), format{}("%cdivisionError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'encodeStorageError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_encodeStorageError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7387,31,7387,114)"), left{}(), format{}("%cencodeStorageError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'enumConversionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_enumConversionError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7389,31,7389,116)"), left{}(), format{}("%cenumConversionError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'indexOOBError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_indexOOBError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7391,31,7391,104)"), left{}(), format{}("%cindexOOBError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'memOverflowError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_memOverflowError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7393,31,7393,110)"), left{}(), format{}("%cmemOverflowError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'popError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_popError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7395,31,7395,94)"), left{}(), format{}("%cpopError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'zeroVarError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_zeroVarError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7397,31,7397,102)"), left{}(), format{}("%czeroVarError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddressManager{}(SortAddressManagerContract{}, SortAddressManagerMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddressManager"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,26,41,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'AddressManager'Unds'getAddress{}(SortString{}) : SortAddressManagerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddressManager_getAddress"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,37,43,117)"), left{}(), format{}("%cgetAddress%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddressManager'Unds'owner{}() : SortAddressManagerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddressManager_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,37,45,100)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddressManager'Unds'renounceOwnership{}() : SortAddressManagerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddressManager_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,37,47,124)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddressManager'Unds'setAddress{}(SortString{}, SortInt{}) : SortAddressManagerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddressManager_setAddress"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,37,49,125)"), left{}(), format{}("%csetAddress%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddressManager'Unds'transferOwnership{}(SortInt{}) : SortAddressManagerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddressManager_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,37,51,128)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'BaseFeeVault{}(SortBaseFeeVaultContract{}, SortBaseFeeVaultMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseFeeVault"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,26,111,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'BaseFeeVault'Unds'MIN'Unds'WITHDRAWAL'Unds'AMOUNT{}() : SortBaseFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseFeeVault_MIN_WITHDRAWAL_AMOUNT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,35,113,128)"), left{}(), format{}("%cMIN_WITHDRAWAL_AMOUNT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BaseFeeVault'Unds'RECIPIENT{}() : SortBaseFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseFeeVault_RECIPIENT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,35,115,104)"), left{}(), format{}("%cRECIPIENT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BaseFeeVault'Unds'version{}() : SortBaseFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseFeeVault_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,35,117,100)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BaseFeeVault'Unds'withdraw{}() : SortBaseFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseFeeVault_withdraw"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,35,119,102)"), left{}(), format{}("%cwithdraw%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BaseSystemDictator{}(SortBaseSystemDictatorContract{}, SortBaseSystemDictatorMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseSystemDictator"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(158,26,158,139)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'BaseSystemDictator'Unds'config{}() : SortBaseSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseSystemDictator_config"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(160,41,160,110)"), left{}(), format{}("%cconfig%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BaseSystemDictator'Unds'currentStep{}() : SortBaseSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseSystemDictator_currentStep"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(162,41,162,120)"), left{}(), format{}("%ccurrentStep%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BaseSystemDictator'Unds'owner{}() : SortBaseSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseSystemDictator_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,41,164,108)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BaseSystemDictator'Unds'renounceOwnership{}() : SortBaseSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseSystemDictator_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(166,41,166,132)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BaseSystemDictator'Unds'transferOwnership{}(SortInt{}) : SortBaseSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BaseSystemDictator_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,41,168,136)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpec{}(SortCalldataSpecContract{}, SortCalldataSpecMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpec"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(447,26,447,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'CalldataSpecMetered{}(SortCalldataSpecMeteredContract{}, SortCalldataSpecMeteredMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(253,26,253,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'BASE'Unds'FEE'Unds'MAX'Unds'CHANGE'Unds'DENOMINATOR{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_BASE_FEE_MAX_CHANGE_DENOMINATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(255,42,255,162)"), left{}(), format{}("%cBASE_FEE_MAX_CHANGE_DENOMINATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'ELASTICITY'Unds'MULTIPLIER{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_ELASTICITY_MULTIPLIER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,42,257,142)"), left{}(), format{}("%cELASTICITY_MULTIPLIER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'INITIAL'Unds'BASE'Unds'FEE{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_INITIAL_BASE_FEE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,42,259,132)"), left{}(), format{}("%cINITIAL_BASE_FEE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'IS'Unds'TEST{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(261,42,261,114)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_MAX_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(263,42,263,136)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'MINIMUM'Unds'BASE'Unds'FEE{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_MINIMUM_BASE_FEE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(265,42,265,132)"), left{}(), format{}("%cMINIMUM_BASE_FEE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'TARGET'Unds'RESOURCE'Unds'LIMIT{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_TARGET_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(267,42,267,142)"), left{}(), format{}("%cTARGET_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_depositTransaction"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(269,42,269,178)"), left{}(), format{}("%cdepositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'failed{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,42,271,112)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'init{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_init"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(273,42,273,108)"), left{}(), format{}("%cinit%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'params{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_params"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(275,42,275,112)"), left{}(), format{}("%cparams%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'setUp{}() : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(277,42,277,110)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse'Unds'sender'Unds'Equals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_test_depositTransaction_emit_creationFalse_sender_Equals_origin"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(279,42,279,284)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse_sender_Equals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse'Unds'sender'Unds'NotEquals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_test_depositTransaction_emit_creationFalse_sender_NotEquals_origin"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,42,281,290)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse_sender_NotEquals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue'Unds'sender'Unds'Equals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_test_depositTransaction_emit_creationTrue_sender_Equals_origin"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(283,42,283,282)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue_sender_Equals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue'Unds'sender'Unds'NotEquals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_test_depositTransaction_emit_creationTrue_sender_NotEquals_origin"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(285,42,285,288)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue_sender_NotEquals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpecMetered'Unds'test'Unds'depositTransaction'Unds'revert{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpecMetered_test_depositTransaction_revert"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(287,42,287,194)"), left{}(), format{}("%ctest_depositTransaction_revert%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpec'Unds'IS'Unds'TEST{}() : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpec_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(449,35,449,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpec'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpec_depositTransaction"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(451,35,451,164)"), left{}(), format{}("%cdepositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpec'Unds'failed{}() : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpec_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(453,35,453,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpec'Unds'setUp{}() : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpec_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(455,35,455,96)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpec'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse'Unds'sender'Unds'Equals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpec_test_depositTransaction_emit_creationFalse_sender_Equals_origin"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(457,35,457,270)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse_sender_Equals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpec'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse'Unds'sender'Unds'NotEquals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpec_test_depositTransaction_emit_creationFalse_sender_NotEquals_origin"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(459,35,459,276)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse_sender_NotEquals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpec'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue'Unds'sender'Unds'Equals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpec_test_depositTransaction_emit_creationTrue_sender_Equals_origin"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(461,35,461,268)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue_sender_Equals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpec'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue'Unds'sender'Unds'NotEquals'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpec_test_depositTransaction_emit_creationTrue_sender_NotEquals_origin"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,35,463,274)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue_sender_NotEquals_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CalldataSpec'Unds'test'Unds'depositTransaction'Unds'revert{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCalldataSpecMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CalldataSpec_test_depositTransaction_revert"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(465,35,465,180)"), left{}(), format{}("%ctest_depositTransaction_revert%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger{}(SortCrossDomainMessengerContract{}, SortCrossDomainMessengerMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(642,26,642,145)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'MESSAGE'Unds'VERSION{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_MESSAGE_VERSION"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(644,43,644,132)"), left{}(), format{}("%cMESSAGE_VERSION%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CALLDATA'Unds'OVERHEAD{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_MIN_GAS_CALLDATA_OVERHEAD"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(646,43,646,152)"), left{}(), format{}("%cMIN_GAS_CALLDATA_OVERHEAD%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CONSTANT'Unds'OVERHEAD{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_MIN_GAS_CONSTANT_OVERHEAD"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(648,43,648,152)"), left{}(), format{}("%cMIN_GAS_CONSTANT_OVERHEAD%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'DENOMINATOR{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(650,43,650,174)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'NUMERATOR{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(652,43,652,170)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'OTHER'Unds'MESSENGER{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_OTHER_MESSENGER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(654,43,654,132)"), left{}(), format{}("%cOTHER_MESSENGER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'baseGas{}(SortBytes{}, SortInt{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_baseGas"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(656,43,656,134)"), left{}(), format{}("%cbaseGas%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'messageNonce{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_messageNonce"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(658,43,658,126)"), left{}(), format{}("%cmessageNonce%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'owner{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,43,660,112)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'pause{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_pause"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(662,43,662,112)"), left{}(), format{}("%cpause%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'paused{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_paused"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(664,43,664,114)"), left{}(), format{}("%cpaused%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'receivedMessages{}(SortInt{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_receivedMessages"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(666,43,666,138)"), left{}(), format{}("%creceivedMessages%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'relayMessage{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_relayMessage"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(668,43,668,176)"), left{}(), format{}("%crelayMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'renounceOwnership{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(670,43,670,136)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'sendMessage{}(SortInt{}, SortBytes{}, SortInt{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_sendMessage"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(672,43,672,150)"), left{}(), format{}("%csendMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'successfulMessages{}(SortInt{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_successfulMessages"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(674,43,674,142)"), left{}(), format{}("%csuccessfulMessages%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'transferOwnership{}(SortInt{}) : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(676,43,676,140)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'unpause{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_unpause"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,43,678,116)"), left{}(), format{}("%cunpause%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainMessenger'Unds'xDomainMessageSender{}() : SortCrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainMessenger_xDomainMessageSender"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(680,43,680,142)"), left{}(), format{}("%cxDomainMessageSender%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainOwnable{}(SortCrossDomainOwnableContract{}, SortCrossDomainOwnableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainOwnable"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(839,26,839,139)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'CrossDomainOwnable2{}(SortCrossDomainOwnable2Contract{}, SortCrossDomainOwnable2Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainOwnable2"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(879,26,879,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'CrossDomainOwnable2'Unds'owner{}() : SortCrossDomainOwnable2Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainOwnable2_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(881,42,881,110)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainOwnable2'Unds'renounceOwnership{}() : SortCrossDomainOwnable2Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainOwnable2_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(883,42,883,134)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainOwnable2'Unds'transferOwnership{}(SortInt{}) : SortCrossDomainOwnable2Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainOwnable2_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,42,885,138)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainOwnable'Unds'owner{}() : SortCrossDomainOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainOwnable_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(841,41,841,108)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainOwnable'Unds'renounceOwnership{}() : SortCrossDomainOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainOwnable_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(843,41,843,132)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'CrossDomainOwnable'Unds'transferOwnership{}(SortInt{}) : SortCrossDomainOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_CrossDomainOwnable_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(845,41,845,136)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'DSTest{}(SortDSTestContract{}, SortDSTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DSTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7999,26,7999,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'DSTest'Unds'IS'Unds'TEST{}() : SortDSTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DSTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8001,29,8001,88)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DSTest'Unds'failed{}() : SortDSTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DSTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8003,29,8003,86)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DeployerWhitelist{}(SortDeployerWhitelistContract{}, SortDeployerWhitelistMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DeployerWhitelist"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(919,26,919,136)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'DeployerWhitelist'Unds'enableArbitraryContractDeployment{}() : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DeployerWhitelist_enableArbitraryContractDeployment"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(921,40,921,162)"), left{}(), format{}("%cenableArbitraryContractDeployment%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DeployerWhitelist'Unds'isDeployerAllowed{}(SortInt{}) : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DeployerWhitelist_isDeployerAllowed"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(923,40,923,134)"), left{}(), format{}("%cisDeployerAllowed%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'DeployerWhitelist'Unds'owner{}() : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DeployerWhitelist_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(925,40,925,106)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DeployerWhitelist'Unds'setOwner{}(SortInt{}) : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DeployerWhitelist_setOwner"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(927,40,927,116)"), left{}(), format{}("%csetOwner%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'DeployerWhitelist'Unds'setWhitelistedDeployer{}(SortInt{}, SortInt{}) : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DeployerWhitelist_setWhitelistedDeployer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,40,929,152)"), left{}(), format{}("%csetWhitelistedDeployer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'DeployerWhitelist'Unds'version{}() : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DeployerWhitelist_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,40,931,110)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DeployerWhitelist'Unds'whitelist{}(SortInt{}) : SortDeployerWhitelistMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DeployerWhitelist_whitelist"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,40,933,118)"), left{}(), format{}("%cwhitelist%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC165{}(SortERC165Contract{}, SortERC165Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC165"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,26,1022,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ERC165'Unds'supportsInterface{}(SortInt{}) : SortERC165Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC165_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1024,29,1024,112)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20{}(SortERC20Contract{}, SortERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1059,26,1059,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ERC20Burnable{}(SortERC20BurnableContract{}, SortERC20BurnableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1182,26,1182,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'allowance{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_allowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1184,36,1184,118)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'approve{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,36,1186,114)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'balanceOf{}(SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1188,36,1188,110)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'burn{}(SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_burn"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1190,36,1190,100)"), left{}(), format{}("%cburn%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'burnFrom{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_burnFrom"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1192,36,1192,116)"), left{}(), format{}("%cburnFrom%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'decimals{}() : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1194,36,1194,104)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_decreaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1196,36,1196,134)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_increaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1198,36,1198,134)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'name{}() : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1200,36,1200,96)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'symbol{}() : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1202,36,1202,100)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'totalSupply{}() : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1204,36,1204,110)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'transfer{}(SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,36,1206,116)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Burnable'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC20BurnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Burnable_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1208,36,1208,132)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit{}(SortERC20PermitContract{}, SortERC20PermitMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9972,26,9972,118)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'DOMAIN'Unds'SEPARATOR{}() : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_DOMAIN_SEPARATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9974,34,9974,116)"), left{}(), format{}("%cDOMAIN_SEPARATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'allowance{}(SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_allowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9976,34,9976,114)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'approve{}(SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9978,34,9978,110)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'balanceOf{}(SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9980,34,9980,106)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'decimals{}() : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9982,34,9982,100)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_decreaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9984,34,9984,130)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_increaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9986,34,9986,130)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'name{}() : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9988,34,9988,92)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'nonces{}(SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_nonces"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9990,34,9990,100)"), left{}(), format{}("%cnonces%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'permit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_permit"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9992,34,9992,148)"), left{}(), format{}("%cpermit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'symbol{}() : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9994,34,9994,96)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'totalSupply{}() : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9996,34,9996,106)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'transfer{}(SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9998,34,9998,112)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Permit'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Permit_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10000,34,10000,128)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes{}(SortERC20VotesContract{}, SortERC20VotesMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1325,26,1325,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'DOMAIN'Unds'SEPARATOR{}() : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_DOMAIN_SEPARATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1327,33,1327,114)"), left{}(), format{}("%cDOMAIN_SEPARATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'allowance{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_allowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1329,33,1329,112)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'approve{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1331,33,1331,108)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'balanceOf{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1333,33,1333,104)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'checkpoints{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_checkpoints"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1335,33,1335,116)"), left{}(), format{}("%ccheckpoints%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'decimals{}() : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1337,33,1337,98)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_decreaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1339,33,1339,128)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'delegate{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_delegate"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1341,33,1341,102)"), left{}(), format{}("%cdelegate%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'delegateBySig{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_delegateBySig"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1343,33,1343,152)"), left{}(), format{}("%cdelegateBySig%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'delegates{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_delegates"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1345,33,1345,104)"), left{}(), format{}("%cdelegates%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'getPastTotalSupply{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_getPastTotalSupply"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1347,33,1347,122)"), left{}(), format{}("%cgetPastTotalSupply%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'getPastVotes{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_getPastVotes"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1349,33,1349,118)"), left{}(), format{}("%cgetPastVotes%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'getVotes{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_getVotes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1351,33,1351,102)"), left{}(), format{}("%cgetVotes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_increaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1353,33,1353,128)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'name{}() : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1355,33,1355,90)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'nonces{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_nonces"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1357,33,1357,98)"), left{}(), format{}("%cnonces%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'numCheckpoints{}(SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_numCheckpoints"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1359,33,1359,114)"), left{}(), format{}("%cnumCheckpoints%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'permit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_permit"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1361,33,1361,146)"), left{}(), format{}("%cpermit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'symbol{}() : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1363,33,1363,94)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'totalSupply{}() : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1365,33,1365,104)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'transfer{}(SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1367,33,1367,110)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20Votes'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC20VotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20Votes_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1369,33,1369,126)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'allowance{}(SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_allowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1061,28,1061,102)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'approve{}(SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1063,28,1063,98)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'balanceOf{}(SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1065,28,1065,94)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'decimals{}() : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1067,28,1067,88)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_decreaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1069,28,1069,118)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_increaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1071,28,1071,118)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'name{}() : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1073,28,1073,80)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'symbol{}() : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1075,28,1075,84)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'totalSupply{}() : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1077,28,1077,94)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'transfer{}(SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1079,28,1079,100)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC20'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC20_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1081,28,1081,116)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721{}(SortERC721Contract{}, SortERC721Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1563,26,1563,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ERC721Bridge{}(SortERC721BridgeContract{}, SortERC721BridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Bridge"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1708,26,1708,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ERC721Bridge'Unds'MESSENGER{}() : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Bridge_MESSENGER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1710,35,1710,104)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Bridge'Unds'OTHER'Unds'BRIDGE{}() : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Bridge_OTHER_BRIDGE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1712,35,1712,110)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Bridge'Unds'bridgeERC721{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Bridge_bridgeERC721"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1714,35,1714,152)"), left{}(), format{}("%cbridgeERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Bridge'Unds'bridgeERC721To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Bridge_bridgeERC721To"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1716,35,1716,164)"), left{}(), format{}("%cbridgeERC721To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Bridge'Unds'messenger{}() : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Bridge_messenger"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1718,35,1718,104)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Bridge'Unds'otherBridge{}() : SortERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Bridge_otherBridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1720,35,1720,108)"), left{}(), format{}("%cotherBridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable{}(SortERC721EnumerableContract{}, SortERC721EnumerableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1784,26,1784,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'approve{}(SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1786,39,1786,120)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'balanceOf{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,39,1788,116)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'getApproved{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_getApproved"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1790,39,1790,120)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_isApprovedForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1792,39,1792,138)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'name{}() : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1794,39,1794,102)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'ownerOf{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_ownerOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1796,39,1796,112)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_safeTransferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1798,39,1798,146)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_setApprovalForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1802,39,1802,140)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'supportsInterface{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1804,39,1804,132)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'symbol{}() : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1806,39,1806,106)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'tokenByIndex{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_tokenByIndex"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1808,39,1808,122)"), left{}(), format{}("%ctokenByIndex%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'tokenOfOwnerByIndex{}(SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_tokenOfOwnerByIndex"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,39,1810,144)"), left{}(), format{}("%ctokenOfOwnerByIndex%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'tokenURI{}(SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_tokenURI"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,39,1812,114)"), left{}(), format{}("%ctokenURI%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'totalSupply{}() : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1814,39,1814,116)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721Enumerable'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721Enumerable_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1816,39,1816,138)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'approve{}(SortInt{}, SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1565,29,1565,100)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'balanceOf{}(SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1567,29,1567,96)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'getApproved{}(SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_getApproved"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1569,29,1569,100)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_isApprovedForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1571,29,1571,118)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'name{}() : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1573,29,1573,82)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'ownerOf{}(SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_ownerOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1575,29,1575,92)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_safeTransferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1577,29,1577,126)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_setApprovalForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1581,29,1581,120)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'supportsInterface{}(SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1583,29,1583,112)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'symbol{}() : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1585,29,1585,86)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'tokenURI{}(SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_tokenURI"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1587,29,1587,94)"), left{}(), format{}("%ctokenURI%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ERC721'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ERC721_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1589,29,1589,118)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'FeeVault{}(SortFeeVaultContract{}, SortFeeVaultMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FeeVault"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1970,26,1970,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'FeeVault'Unds'MIN'Unds'WITHDRAWAL'Unds'AMOUNT{}() : SortFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FeeVault_MIN_WITHDRAWAL_AMOUNT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1972,31,1972,120)"), left{}(), format{}("%cMIN_WITHDRAWAL_AMOUNT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FeeVault'Unds'RECIPIENT{}() : SortFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FeeVault_RECIPIENT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1974,31,1974,96)"), left{}(), format{}("%cRECIPIENT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FeeVault'Unds'withdraw{}() : SortFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FeeVault_withdraw"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1976,31,1976,94)"), left{}(), format{}("%cwithdraw%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FreshSystemDictator{}(SortFreshSystemDictatorContract{}, SortFreshSystemDictatorMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FreshSystemDictator"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2022,26,2022,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'FreshSystemDictator'Unds'config{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FreshSystemDictator_config"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,42,2024,112)"), left{}(), format{}("%cconfig%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FreshSystemDictator'Unds'currentStep{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FreshSystemDictator_currentStep"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2026,42,2026,122)"), left{}(), format{}("%ccurrentStep%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FreshSystemDictator'Unds'owner{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FreshSystemDictator_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2028,42,2028,110)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FreshSystemDictator'Unds'renounceOwnership{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FreshSystemDictator_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2030,42,2030,134)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FreshSystemDictator'Unds'step1{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FreshSystemDictator_step1"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2032,42,2032,110)"), left{}(), format{}("%cstep1%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FreshSystemDictator'Unds'step2{}() : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FreshSystemDictator_step2"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2034,42,2034,110)"), left{}(), format{}("%cstep2%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FreshSystemDictator'Unds'transferOwnership{}(SortInt{}) : SortFreshSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FreshSystemDictator_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2036,42,2036,138)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GasPriceOracle{}(SortGasPriceOracleContract{}, SortGasPriceOracleMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GasPriceOracle"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2094,26,2094,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'GasPriceOracle'Unds'baseFee{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GasPriceOracle_baseFee"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2096,37,2096,104)"), left{}(), format{}("%cbaseFee%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GasPriceOracle'Unds'decimals{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GasPriceOracle_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2098,37,2098,106)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GasPriceOracle'Unds'gasPrice{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GasPriceOracle_gasPrice"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2100,37,2100,106)"), left{}(), format{}("%cgasPrice%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GasPriceOracle'Unds'getL1Fee{}(SortBytes{}) : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GasPriceOracle_getL1Fee"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2102,37,2102,116)"), left{}(), format{}("%cgetL1Fee%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GasPriceOracle'Unds'getL1GasUsed{}(SortBytes{}) : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GasPriceOracle_getL1GasUsed"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2104,37,2104,124)"), left{}(), format{}("%cgetL1GasUsed%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GasPriceOracle'Unds'l1BaseFee{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GasPriceOracle_l1BaseFee"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2106,37,2106,108)"), left{}(), format{}("%cl1BaseFee%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GasPriceOracle'Unds'overhead{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GasPriceOracle_overhead"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2108,37,2108,106)"), left{}(), format{}("%coverhead%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GasPriceOracle'Unds'scalar{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GasPriceOracle_scalar"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2110,37,2110,102)"), left{}(), format{}("%cscalar%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GasPriceOracle'Unds'version{}() : SortGasPriceOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GasPriceOracle_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2112,37,2112,104)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken{}(SortGovernanceTokenContract{}, SortGovernanceTokenMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2183,26,2183,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'DOMAIN'Unds'SEPARATOR{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_DOMAIN_SEPARATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2185,38,2185,124)"), left{}(), format{}("%cDOMAIN_SEPARATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'allowance{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_allowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2187,38,2187,122)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'approve{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2189,38,2189,118)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'balanceOf{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2191,38,2191,114)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'burn{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_burn"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2193,38,2193,104)"), left{}(), format{}("%cburn%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'burnFrom{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_burnFrom"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2195,38,2195,120)"), left{}(), format{}("%cburnFrom%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'checkpoints{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_checkpoints"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2197,38,2197,126)"), left{}(), format{}("%ccheckpoints%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'decimals{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2199,38,2199,108)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_decreaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2201,38,2201,138)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'delegate{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_delegate"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2203,38,2203,112)"), left{}(), format{}("%cdelegate%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'delegateBySig{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_delegateBySig"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2205,38,2205,162)"), left{}(), format{}("%cdelegateBySig%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'delegates{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_delegates"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2207,38,2207,114)"), left{}(), format{}("%cdelegates%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'getPastTotalSupply{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_getPastTotalSupply"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2209,38,2209,132)"), left{}(), format{}("%cgetPastTotalSupply%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'getPastVotes{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_getPastVotes"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2211,38,2211,128)"), left{}(), format{}("%cgetPastVotes%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'getVotes{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_getVotes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2213,38,2213,112)"), left{}(), format{}("%cgetVotes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_increaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2215,38,2215,138)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'mint{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_mint"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2217,38,2217,112)"), left{}(), format{}("%cmint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'name{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2219,38,2219,100)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'nonces{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_nonces"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2221,38,2221,108)"), left{}(), format{}("%cnonces%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'numCheckpoints{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_numCheckpoints"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2223,38,2223,124)"), left{}(), format{}("%cnumCheckpoints%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'owner{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2225,38,2225,102)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'permit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_permit"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2227,38,2227,156)"), left{}(), format{}("%cpermit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'renounceOwnership{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2229,38,2229,126)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'symbol{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2231,38,2231,104)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'totalSupply{}() : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2233,38,2233,114)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'transfer{}(SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2235,38,2235,120)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2237,38,2237,136)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'GovernanceToken'Unds'transferOwnership{}(SortInt{}) : SortGovernanceTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GovernanceToken_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2239,38,2239,130)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC165{}(SortIERC165Contract{}, SortIERC165Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC165"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2490,26,2490,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IERC165'Unds'supportsInterface{}(SortInt{}) : SortIERC165Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC165_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2492,30,2492,114)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20{}(SortIERC20Contract{}, SortIERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2514,26,2514,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IERC20Metadata{}(SortIERC20MetadataContract{}, SortIERC20MetadataMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Metadata"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2591,26,2591,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IERC20Metadata'Unds'allowance{}(SortInt{}, SortInt{}) : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Metadata_allowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2593,37,2593,120)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Metadata'Unds'approve{}(SortInt{}, SortInt{}) : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Metadata_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2595,37,2595,116)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Metadata'Unds'balanceOf{}(SortInt{}) : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Metadata_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2597,37,2597,112)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Metadata'Unds'decimals{}() : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Metadata_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2599,37,2599,106)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Metadata'Unds'name{}() : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Metadata_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2601,37,2601,98)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Metadata'Unds'symbol{}() : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Metadata_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2603,37,2603,102)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Metadata'Unds'totalSupply{}() : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Metadata_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2605,37,2605,112)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Metadata'Unds'transfer{}(SortInt{}, SortInt{}) : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Metadata_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2607,37,2607,118)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Metadata'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC20MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Metadata_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2609,37,2609,134)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Permit{}(SortIERC20PermitContract{}, SortIERC20PermitMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Permit"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10128,26,10128,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IERC20Permit'Unds'DOMAIN'Unds'SEPARATOR{}() : SortIERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Permit_DOMAIN_SEPARATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10130,35,10130,118)"), left{}(), format{}("%cDOMAIN_SEPARATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Permit'Unds'nonces{}(SortInt{}) : SortIERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Permit_nonces"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10132,35,10132,102)"), left{}(), format{}("%cnonces%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20Permit'Unds'permit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortIERC20PermitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20Permit_permit"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10134,35,10134,150)"), left{}(), format{}("%cpermit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20'Unds'allowance{}(SortInt{}, SortInt{}) : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20_allowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2516,29,2516,104)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20'Unds'approve{}(SortInt{}, SortInt{}) : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2518,29,2518,100)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20'Unds'balanceOf{}(SortInt{}) : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2520,29,2520,96)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20'Unds'totalSupply{}() : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2522,29,2522,96)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20'Unds'transfer{}(SortInt{}, SortInt{}) : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2524,29,2524,102)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC20'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC20_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2526,29,2526,118)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721{}(SortIERC721Contract{}, SortIERC721Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2692,26,2692,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IERC721Enumerable{}(SortIERC721EnumerableContract{}, SortIERC721EnumerableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2812,26,2812,136)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'approve{}(SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2814,40,2814,122)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'balanceOf{}(SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2816,40,2816,118)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'getApproved{}(SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_getApproved"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2818,40,2818,122)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_isApprovedForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2820,40,2820,140)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'ownerOf{}(SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_ownerOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2822,40,2822,114)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_safeTransferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2824,40,2824,148)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_setApprovalForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2828,40,2828,142)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'supportsInterface{}(SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2830,40,2830,134)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'tokenByIndex{}(SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_tokenByIndex"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2832,40,2832,124)"), left{}(), format{}("%ctokenByIndex%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'tokenOfOwnerByIndex{}(SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_tokenOfOwnerByIndex"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2834,40,2834,146)"), left{}(), format{}("%ctokenOfOwnerByIndex%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'totalSupply{}() : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2836,40,2836,118)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Enumerable'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721EnumerableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Enumerable_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2838,40,2838,140)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata{}(SortIERC721MetadataContract{}, SortIERC721MetadataMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2960,26,2960,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'approve{}(SortInt{}, SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2962,38,2962,118)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'balanceOf{}(SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2964,38,2964,114)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'getApproved{}(SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_getApproved"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2966,38,2966,118)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_isApprovedForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2968,38,2968,136)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'name{}() : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2970,38,2970,100)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'ownerOf{}(SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_ownerOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2972,38,2972,110)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_safeTransferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2974,38,2974,144)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_setApprovalForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2978,38,2978,138)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'supportsInterface{}(SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2980,38,2980,130)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'symbol{}() : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2982,38,2982,104)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'tokenURI{}(SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_tokenURI"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2984,38,2984,112)"), left{}(), format{}("%ctokenURI%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Metadata'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721MetadataMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Metadata_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2986,38,2986,136)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721Receiver{}(SortIERC721ReceiverContract{}, SortIERC721ReceiverMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Receiver"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3105,26,3105,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IERC721Receiver'Unds'onERC721Received{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortIERC721ReceiverMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721Receiver_onERC721Received"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3107,38,3107,158)"), left{}(), format{}("%conERC721Received%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721'Unds'approve{}(SortInt{}, SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2694,30,2694,102)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721'Unds'balanceOf{}(SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2696,30,2696,98)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721'Unds'getApproved{}(SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721_getApproved"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2698,30,2698,102)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721_isApprovedForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2700,30,2700,120)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721'Unds'ownerOf{}(SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721_ownerOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2702,30,2702,94)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721_safeTransferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2704,30,2704,128)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721_setApprovalForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2708,30,2708,122)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721'Unds'supportsInterface{}(SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2710,30,2710,114)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IERC721'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IERC721_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2712,30,2712,120)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IL1ChugSplashDeployer{}(SortIL1ChugSplashDeployerContract{}, SortIL1ChugSplashDeployerMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IL1ChugSplashDeployer"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3366,26,3366,148)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IL1ChugSplashDeployer'Unds'isUpgrading{}() : SortIL1ChugSplashDeployerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IL1ChugSplashDeployer_isUpgrading"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3368,44,3368,126)"), left{}(), format{}("%cisUpgrading%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ILegacyMintableERC20{}(SortILegacyMintableERC20Contract{}, SortILegacyMintableERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ILegacyMintableERC20"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7544,26,7544,145)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ILegacyMintableERC20'Unds'burn{}(SortInt{}, SortInt{}) : SortILegacyMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ILegacyMintableERC20_burn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7546,43,7546,122)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ILegacyMintableERC20'Unds'l1Token{}() : SortILegacyMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ILegacyMintableERC20_l1Token"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7548,43,7548,116)"), left{}(), format{}("%cl1Token%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ILegacyMintableERC20'Unds'mint{}(SortInt{}, SortInt{}) : SortILegacyMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ILegacyMintableERC20_mint"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7550,43,7550,122)"), left{}(), format{}("%cmint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC20{}(SortIOptimismMintableERC20Contract{}, SortIOptimismMintableERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC20"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7589,26,7589,151)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IOptimismMintableERC20'Unds'bridge{}() : SortIOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC20_bridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7591,45,7591,118)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC20'Unds'burn{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC20_burn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7593,45,7593,126)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC20'Unds'mint{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC20_mint"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7595,45,7595,126)"), left{}(), format{}("%cmint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC20'Unds'remoteToken{}() : SortIOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC20_remoteToken"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7597,45,7597,128)"), left{}(), format{}("%cremoteToken%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721{}(SortIOptimismMintableERC721Contract{}, SortIOptimismMintableERC721Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7642,26,7642,154)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'BRIDGE{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_BRIDGE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7644,46,7644,120)"), left{}(), format{}("%cBRIDGE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'REMOTE'Unds'CHAIN'Unds'ID{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_REMOTE_CHAIN_ID"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7646,46,7646,138)"), left{}(), format{}("%cREMOTE_CHAIN_ID%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'REMOTE'Unds'TOKEN{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_REMOTE_TOKEN"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7648,46,7648,132)"), left{}(), format{}("%cREMOTE_TOKEN%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'approve{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7650,46,7650,134)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'balanceOf{}(SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7652,46,7652,130)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'bridge{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_bridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7654,46,7654,120)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'burn{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_burn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7656,46,7656,128)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'getApproved{}(SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_getApproved"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7658,46,7658,134)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_isApprovedForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7660,46,7660,152)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'ownerOf{}(SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_ownerOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7662,46,7662,126)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'remoteChainId{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_remoteChainId"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7664,46,7664,134)"), left{}(), format{}("%cremoteChainId%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'remoteToken{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_remoteToken"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7666,46,7666,130)"), left{}(), format{}("%cremoteToken%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'safeMint{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_safeMint"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7668,46,7668,136)"), left{}(), format{}("%csafeMint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_safeTransferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7670,46,7670,160)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_setApprovalForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7674,46,7674,154)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'supportsInterface{}(SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7676,46,7676,146)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'tokenByIndex{}(SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_tokenByIndex"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7678,46,7678,136)"), left{}(), format{}("%ctokenByIndex%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'tokenOfOwnerByIndex{}(SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_tokenOfOwnerByIndex"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7680,46,7680,158)"), left{}(), format{}("%ctokenOfOwnerByIndex%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'totalSupply{}() : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7682,46,7682,130)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IOptimismMintableERC721'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortIOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IOptimismMintableERC721_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7684,46,7684,152)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IStaticERC1967Proxy{}(SortIStaticERC1967ProxyContract{}, SortIStaticERC1967ProxyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IStaticERC1967Proxy"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6500,26,6500,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IStaticERC1967Proxy'Unds'admin{}() : SortIStaticERC1967ProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IStaticERC1967Proxy_admin"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6502,42,6502,110)"), left{}(), format{}("%cadmin%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IStaticERC1967Proxy'Unds'implementation{}() : SortIStaticERC1967ProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IStaticERC1967Proxy_implementation"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6504,42,6504,128)"), left{}(), format{}("%cimplementation%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IStaticL1ChugSplashProxy{}(SortIStaticL1ChugSplashProxyContract{}, SortIStaticL1ChugSplashProxyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IStaticL1ChugSplashProxy"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6531,26,6531,157)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IStaticL1ChugSplashProxy'Unds'getImplementation{}() : SortIStaticL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IStaticL1ChugSplashProxy_getImplementation"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6533,47,6533,144)"), left{}(), format{}("%cgetImplementation%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IStaticL1ChugSplashProxy'Unds'getOwner{}() : SortIStaticL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IStaticL1ChugSplashProxy_getOwner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6535,47,6535,126)"), left{}(), format{}("%cgetOwner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'IVotes{}(SortIVotesContract{}, SortIVotesMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IVotes"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3133,26,3133,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'IVotes'Unds'delegate{}(SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IVotes_delegate"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3135,29,3135,94)"), left{}(), format{}("%cdelegate%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IVotes'Unds'delegateBySig{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IVotes_delegateBySig"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3137,29,3137,144)"), left{}(), format{}("%cdelegateBySig%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IVotes'Unds'delegates{}(SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IVotes_delegates"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3139,29,3139,96)"), left{}(), format{}("%cdelegates%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IVotes'Unds'getPastTotalSupply{}(SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IVotes_getPastTotalSupply"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3141,29,3141,114)"), left{}(), format{}("%cgetPastTotalSupply%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IVotes'Unds'getPastVotes{}(SortInt{}, SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IVotes_getPastVotes"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3143,29,3143,110)"), left{}(), format{}("%cgetPastVotes%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'IVotes'Unds'getVotes{}(SortInt{}) : SortIVotesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_IVotes_getVotes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3145,29,3145,94)"), left{}(), format{}("%cgetVotes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block{}(SortL1BlockContract{}, SortL1BlockMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3223,26,3223,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L1BlockNumber{}(SortL1BlockNumberContract{}, SortL1BlockNumberMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1BlockNumber"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3335,26,3335,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L1BlockNumber'Unds'getL1BlockNumber{}() : SortL1BlockNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1BlockNumber_getL1BlockNumber"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3337,36,3337,120)"), left{}(), format{}("%cgetL1BlockNumber%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1BlockNumber'Unds'version{}() : SortL1BlockNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1BlockNumber_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3339,36,3339,102)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'DEPOSITOR'Unds'ACCOUNT{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_DEPOSITOR_ACCOUNT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3225,30,3225,110)"), left{}(), format{}("%cDEPOSITOR_ACCOUNT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'basefee{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_basefee"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3227,30,3227,90)"), left{}(), format{}("%cbasefee%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'batcherHash{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_batcherHash"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3229,30,3229,98)"), left{}(), format{}("%cbatcherHash%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'hash{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_hash"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3231,30,3231,84)"), left{}(), format{}("%chash%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'l1FeeOverhead{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_l1FeeOverhead"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3233,30,3233,102)"), left{}(), format{}("%cl1FeeOverhead%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'l1FeeScalar{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_l1FeeScalar"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3235,30,3235,98)"), left{}(), format{}("%cl1FeeScalar%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'number{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_number"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3237,30,3237,88)"), left{}(), format{}("%cnumber%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'sequenceNumber{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_sequenceNumber"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3239,30,3239,104)"), left{}(), format{}("%csequenceNumber%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'setL1BlockValues{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_setL1BlockValues"), priorities{}(), right{}(), terminals{}("110101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3241,30,3241,168)"), left{}(), format{}("%csetL1BlockValues%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'timestamp{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_timestamp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3243,30,3243,94)"), left{}(), format{}("%ctimestamp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1Block'Unds'version{}() : SortL1BlockMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1Block_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3245,30,3245,90)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ChugSplashProxy{}(SortL1ChugSplashProxyContract{}, SortL1ChugSplashProxyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ChugSplashProxy"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3389,26,3389,136)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L1ChugSplashProxy'Unds'getImplementation{}() : SortL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ChugSplashProxy_getImplementation"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3391,40,3391,130)"), left{}(), format{}("%cgetImplementation%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ChugSplashProxy'Unds'getOwner{}() : SortL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ChugSplashProxy_getOwner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3393,40,3393,112)"), left{}(), format{}("%cgetOwner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ChugSplashProxy'Unds'setCode{}(SortBytes{}) : SortL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ChugSplashProxy_setCode"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3395,40,3395,120)"), left{}(), format{}("%csetCode%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ChugSplashProxy'Unds'setOwner{}(SortInt{}) : SortL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ChugSplashProxy_setOwner"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3397,40,3397,116)"), left{}(), format{}("%csetOwner%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ChugSplashProxy'Unds'setStorage{}(SortInt{}, SortInt{}) : SortL1ChugSplashProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ChugSplashProxy_setStorage"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3399,40,3399,128)"), left{}(), format{}("%csetStorage%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger{}(SortL1CrossDomainMessengerContract{}, SortL1CrossDomainMessengerMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3449,26,3449,151)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'MESSAGE'Unds'VERSION{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_MESSAGE_VERSION"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3451,45,3451,136)"), left{}(), format{}("%cMESSAGE_VERSION%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CALLDATA'Unds'OVERHEAD{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_MIN_GAS_CALLDATA_OVERHEAD"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3453,45,3453,156)"), left{}(), format{}("%cMIN_GAS_CALLDATA_OVERHEAD%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CONSTANT'Unds'OVERHEAD{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_MIN_GAS_CONSTANT_OVERHEAD"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3455,45,3455,156)"), left{}(), format{}("%cMIN_GAS_CONSTANT_OVERHEAD%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'DENOMINATOR{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3457,45,3457,178)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'NUMERATOR{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3459,45,3459,174)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'OTHER'Unds'MESSENGER{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_OTHER_MESSENGER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3461,45,3461,136)"), left{}(), format{}("%cOTHER_MESSENGER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'PORTAL{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_PORTAL"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3463,45,3463,118)"), left{}(), format{}("%cPORTAL%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'baseGas{}(SortBytes{}, SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_baseGas"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3465,45,3465,138)"), left{}(), format{}("%cbaseGas%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'initialize{}(SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_initialize"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3467,45,3467,130)"), left{}(), format{}("%cinitialize%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'messageNonce{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_messageNonce"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3469,45,3469,130)"), left{}(), format{}("%cmessageNonce%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'owner{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3471,45,3471,116)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'pause{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_pause"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3473,45,3473,116)"), left{}(), format{}("%cpause%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'paused{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_paused"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3475,45,3475,118)"), left{}(), format{}("%cpaused%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'receivedMessages{}(SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_receivedMessages"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3477,45,3477,142)"), left{}(), format{}("%creceivedMessages%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'relayMessage{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_relayMessage"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3479,45,3479,180)"), left{}(), format{}("%crelayMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'renounceOwnership{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3481,45,3481,140)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'sendMessage{}(SortInt{}, SortBytes{}, SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_sendMessage"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3483,45,3483,154)"), left{}(), format{}("%csendMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'successfulMessages{}(SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_successfulMessages"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3485,45,3485,146)"), left{}(), format{}("%csuccessfulMessages%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'transferOwnership{}(SortInt{}) : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3487,45,3487,144)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'unpause{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_unpause"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3489,45,3489,120)"), left{}(), format{}("%cunpause%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'version{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3491,45,3491,120)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1CrossDomainMessenger'Unds'xDomainMessageSender{}() : SortL1CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1CrossDomainMessenger_xDomainMessageSender"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3493,45,3493,146)"), left{}(), format{}("%cxDomainMessageSender%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ERC721Bridge{}(SortL1ERC721BridgeContract{}, SortL1ERC721BridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ERC721Bridge"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3658,26,3658,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L1ERC721Bridge'Unds'MESSENGER{}() : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ERC721Bridge_MESSENGER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3660,37,3660,108)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ERC721Bridge'Unds'OTHER'Unds'BRIDGE{}() : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ERC721Bridge_OTHER_BRIDGE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3662,37,3662,114)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ERC721Bridge'Unds'bridgeERC721{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ERC721Bridge_bridgeERC721"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3664,37,3664,156)"), left{}(), format{}("%cbridgeERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ERC721Bridge'Unds'bridgeERC721To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ERC721Bridge_bridgeERC721To"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3666,37,3666,168)"), left{}(), format{}("%cbridgeERC721To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ERC721Bridge'Unds'deposits{}(SortInt{}, SortInt{}, SortInt{}) : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ERC721Bridge_deposits"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3668,37,3668,126)"), left{}(), format{}("%cdeposits%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ERC721Bridge'Unds'finalizeBridgeERC721{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ERC721Bridge_finalizeBridgeERC721"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3670,37,3670,180)"), left{}(), format{}("%cfinalizeBridgeERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ERC721Bridge'Unds'messenger{}() : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ERC721Bridge_messenger"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3672,37,3672,108)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ERC721Bridge'Unds'otherBridge{}() : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ERC721Bridge_otherBridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3674,37,3674,112)"), left{}(), format{}("%cotherBridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1ERC721Bridge'Unds'version{}() : SortL1ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1ERC721Bridge_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3676,37,3676,104)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1FeeVault{}(SortL1FeeVaultContract{}, SortL1FeeVaultMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1FeeVault"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3769,26,3769,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L1FeeVault'Unds'MIN'Unds'WITHDRAWAL'Unds'AMOUNT{}() : SortL1FeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1FeeVault_MIN_WITHDRAWAL_AMOUNT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3771,33,3771,124)"), left{}(), format{}("%cMIN_WITHDRAWAL_AMOUNT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1FeeVault'Unds'RECIPIENT{}() : SortL1FeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1FeeVault_RECIPIENT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3773,33,3773,100)"), left{}(), format{}("%cRECIPIENT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1FeeVault'Unds'version{}() : SortL1FeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1FeeVault_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3775,33,3775,96)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1FeeVault'Unds'withdraw{}() : SortL1FeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1FeeVault_withdraw"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3777,33,3777,98)"), left{}(), format{}("%cwithdraw%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge{}(SortL1StandardBridgeContract{}, SortL1StandardBridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3816,26,3816,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'MESSENGER{}() : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_MESSENGER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3818,39,3818,112)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'OTHER'Unds'BRIDGE{}() : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_OTHER_BRIDGE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3820,39,3820,118)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'bridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_bridgeERC20"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3822,39,3822,158)"), left{}(), format{}("%cbridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'bridgeERC20To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_bridgeERC20To"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3824,39,3824,170)"), left{}(), format{}("%cbridgeERC20To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'bridgeETH{}(SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_bridgeETH"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3826,39,3826,130)"), left{}(), format{}("%cbridgeETH%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'bridgeETHTo{}(SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_bridgeETHTo"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3828,39,3828,142)"), left{}(), format{}("%cbridgeETHTo%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'depositERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_depositERC20"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3830,39,3830,160)"), left{}(), format{}("%cdepositERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'depositERC20To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_depositERC20To"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3832,39,3832,172)"), left{}(), format{}("%cdepositERC20To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'depositETH{}(SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_depositETH"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3834,39,3834,132)"), left{}(), format{}("%cdepositETH%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'depositETHTo{}(SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_depositETHTo"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3836,39,3836,144)"), left{}(), format{}("%cdepositETHTo%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'deposits{}(SortInt{}, SortInt{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_deposits"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3838,39,3838,122)"), left{}(), format{}("%cdeposits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'finalizeBridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_finalizeBridgeERC20"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3840,39,3840,182)"), left{}(), format{}("%cfinalizeBridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'finalizeBridgeETH{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_finalizeBridgeETH"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3842,39,3842,162)"), left{}(), format{}("%cfinalizeBridgeETH%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'finalizeERC20Withdrawal{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_finalizeERC20Withdrawal"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3844,39,3844,190)"), left{}(), format{}("%cfinalizeERC20Withdrawal%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'finalizeETHWithdrawal{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_finalizeETHWithdrawal"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3846,39,3846,170)"), left{}(), format{}("%cfinalizeETHWithdrawal%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'l2TokenBridge{}() : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_l2TokenBridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3848,39,3848,120)"), left{}(), format{}("%cl2TokenBridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'messenger{}() : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_messenger"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3850,39,3850,112)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L1StandardBridge'Unds'version{}() : SortL1StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L1StandardBridge_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3852,39,3852,108)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger{}(SortL2CrossDomainMessengerContract{}, SortL2CrossDomainMessengerMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4042,26,4042,151)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'MESSAGE'Unds'VERSION{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_MESSAGE_VERSION"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4044,45,4044,136)"), left{}(), format{}("%cMESSAGE_VERSION%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CALLDATA'Unds'OVERHEAD{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_MIN_GAS_CALLDATA_OVERHEAD"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4046,45,4046,156)"), left{}(), format{}("%cMIN_GAS_CALLDATA_OVERHEAD%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'CONSTANT'Unds'OVERHEAD{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_MIN_GAS_CONSTANT_OVERHEAD"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4048,45,4048,156)"), left{}(), format{}("%cMIN_GAS_CONSTANT_OVERHEAD%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'DENOMINATOR{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4050,45,4050,178)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_DENOMINATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'MIN'Unds'GAS'Unds'DYNAMIC'Unds'OVERHEAD'Unds'NUMERATOR{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_MIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4052,45,4052,174)"), left{}(), format{}("%cMIN_GAS_DYNAMIC_OVERHEAD_NUMERATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'OTHER'Unds'MESSENGER{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_OTHER_MESSENGER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4054,45,4054,136)"), left{}(), format{}("%cOTHER_MESSENGER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'baseGas{}(SortBytes{}, SortInt{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_baseGas"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4056,45,4056,138)"), left{}(), format{}("%cbaseGas%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'initialize{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_initialize"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4058,45,4058,126)"), left{}(), format{}("%cinitialize%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'l1CrossDomainMessenger{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_l1CrossDomainMessenger"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4060,45,4060,150)"), left{}(), format{}("%cl1CrossDomainMessenger%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'messageNonce{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_messageNonce"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4062,45,4062,130)"), left{}(), format{}("%cmessageNonce%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'owner{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4064,45,4064,116)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'pause{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_pause"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4066,45,4066,116)"), left{}(), format{}("%cpause%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'paused{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_paused"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4068,45,4068,118)"), left{}(), format{}("%cpaused%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'receivedMessages{}(SortInt{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_receivedMessages"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4070,45,4070,142)"), left{}(), format{}("%creceivedMessages%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'relayMessage{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_relayMessage"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4072,45,4072,180)"), left{}(), format{}("%crelayMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'renounceOwnership{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4074,45,4074,140)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'sendMessage{}(SortInt{}, SortBytes{}, SortInt{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_sendMessage"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4076,45,4076,154)"), left{}(), format{}("%csendMessage%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'successfulMessages{}(SortInt{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_successfulMessages"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4078,45,4078,146)"), left{}(), format{}("%csuccessfulMessages%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'transferOwnership{}(SortInt{}) : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4080,45,4080,144)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'unpause{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_unpause"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4082,45,4082,120)"), left{}(), format{}("%cunpause%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'version{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4084,45,4084,120)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2CrossDomainMessenger'Unds'xDomainMessageSender{}() : SortL2CrossDomainMessengerMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2CrossDomainMessenger_xDomainMessageSender"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4086,45,4086,146)"), left{}(), format{}("%cxDomainMessageSender%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ERC721Bridge{}(SortL2ERC721BridgeContract{}, SortL2ERC721BridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ERC721Bridge"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4250,26,4250,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L2ERC721Bridge'Unds'MESSENGER{}() : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ERC721Bridge_MESSENGER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4252,37,4252,108)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ERC721Bridge'Unds'OTHER'Unds'BRIDGE{}() : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ERC721Bridge_OTHER_BRIDGE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4254,37,4254,114)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ERC721Bridge'Unds'bridgeERC721{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ERC721Bridge_bridgeERC721"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4256,37,4256,156)"), left{}(), format{}("%cbridgeERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ERC721Bridge'Unds'bridgeERC721To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ERC721Bridge_bridgeERC721To"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4258,37,4258,168)"), left{}(), format{}("%cbridgeERC721To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ERC721Bridge'Unds'finalizeBridgeERC721{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ERC721Bridge_finalizeBridgeERC721"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4260,37,4260,180)"), left{}(), format{}("%cfinalizeBridgeERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ERC721Bridge'Unds'messenger{}() : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ERC721Bridge_messenger"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4262,37,4262,108)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ERC721Bridge'Unds'otherBridge{}() : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ERC721Bridge_otherBridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4264,37,4264,112)"), left{}(), format{}("%cotherBridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ERC721Bridge'Unds'version{}() : SortL2ERC721BridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ERC721Bridge_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4266,37,4266,104)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle{}(SortL2OutputOracleContract{}, SortL2OutputOracleMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4349,26,4349,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'HISTORICAL'Unds'TOTAL'Unds'BLOCKS{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_HISTORICAL_TOTAL_BLOCKS"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4351,37,4351,136)"), left{}(), format{}("%cHISTORICAL_TOTAL_BLOCKS%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'L2'Unds'BLOCK'Unds'TIME{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_L2_BLOCK_TIME"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4353,37,4353,116)"), left{}(), format{}("%cL2_BLOCK_TIME%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'STARTING'Unds'BLOCK'Unds'NUMBER{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_STARTING_BLOCK_NUMBER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4355,37,4355,132)"), left{}(), format{}("%cSTARTING_BLOCK_NUMBER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'STARTING'Unds'TIMESTAMP{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_STARTING_TIMESTAMP"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4357,37,4357,126)"), left{}(), format{}("%cSTARTING_TIMESTAMP%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'SUBMISSION'Unds'INTERVAL{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_SUBMISSION_INTERVAL"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4359,37,4359,128)"), left{}(), format{}("%cSUBMISSION_INTERVAL%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'changeProposer{}(SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_changeProposer"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4361,37,4361,122)"), left{}(), format{}("%cchangeProposer%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'computeL2Timestamp{}(SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_computeL2Timestamp"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4363,37,4363,130)"), left{}(), format{}("%ccomputeL2Timestamp%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'deleteL2Output{}(SortK{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_deleteL2Output"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4365,37,4365,120)"), left{}(), format{}("%cdeleteL2Output%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'getL2Output{}(SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_getL2Output"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4367,37,4367,116)"), left{}(), format{}("%cgetL2Output%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'initialize{}(SortInt{}, SortInt{}, SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_initialize"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4369,37,4369,130)"), left{}(), format{}("%cinitialize%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'latestBlockNumber{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_latestBlockNumber"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4371,37,4371,124)"), left{}(), format{}("%clatestBlockNumber%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'nextBlockNumber{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_nextBlockNumber"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4373,37,4373,120)"), left{}(), format{}("%cnextBlockNumber%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'owner{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4375,37,4375,100)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'proposeL2Output{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_proposeL2Output"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4377,37,4377,148)"), left{}(), format{}("%cproposeL2Output%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'proposer{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_proposer"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4379,37,4379,106)"), left{}(), format{}("%cproposer%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'renounceOwnership{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4381,37,4381,124)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'transferOwnership{}(SortInt{}) : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4383,37,4383,128)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2OutputOracle'Unds'version{}() : SortL2OutputOracleMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2OutputOracle_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4385,37,4385,104)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge{}(SortL2StandardBridgeContract{}, SortL2StandardBridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4518,26,4518,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'MESSENGER{}() : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_MESSENGER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4520,39,4520,112)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'OTHER'Unds'BRIDGE{}() : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_OTHER_BRIDGE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4522,39,4522,118)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'bridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_bridgeERC20"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4524,39,4524,158)"), left{}(), format{}("%cbridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'bridgeERC20To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_bridgeERC20To"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4526,39,4526,170)"), left{}(), format{}("%cbridgeERC20To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'bridgeETH{}(SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_bridgeETH"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4528,39,4528,130)"), left{}(), format{}("%cbridgeETH%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'bridgeETHTo{}(SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_bridgeETHTo"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4530,39,4530,142)"), left{}(), format{}("%cbridgeETHTo%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'deposits{}(SortInt{}, SortInt{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_deposits"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4532,39,4532,122)"), left{}(), format{}("%cdeposits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'finalizeBridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_finalizeBridgeERC20"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4534,39,4534,182)"), left{}(), format{}("%cfinalizeBridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'finalizeBridgeETH{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_finalizeBridgeETH"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4536,39,4536,162)"), left{}(), format{}("%cfinalizeBridgeETH%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'finalizeDeposit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_finalizeDeposit"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4538,39,4538,174)"), left{}(), format{}("%cfinalizeDeposit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'messenger{}() : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_messenger"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4540,39,4540,112)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'version{}() : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4542,39,4542,108)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'withdraw{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_withdraw"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4544,39,4544,144)"), left{}(), format{}("%cwithdraw%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2StandardBridge'Unds'withdrawTo{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortL2StandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2StandardBridge_withdrawTo"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4546,39,4546,156)"), left{}(), format{}("%cwithdrawTo%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ToL1MessagePasser{}(SortL2ToL1MessagePasserContract{}, SortL2ToL1MessagePasserMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ToL1MessagePasser"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4698,26,4698,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'L2ToL1MessagePasser'Unds'burn{}() : SortL2ToL1MessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ToL1MessagePasser_burn"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4700,42,4700,108)"), left{}(), format{}("%cburn%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ToL1MessagePasser'Unds'initiateWithdrawal{}(SortInt{}, SortInt{}, SortBytes{}) : SortL2ToL1MessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ToL1MessagePasser_initiateWithdrawal"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4702,42,4702,162)"), left{}(), format{}("%cinitiateWithdrawal%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ToL1MessagePasser'Unds'nonce{}() : SortL2ToL1MessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ToL1MessagePasser_nonce"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4704,42,4704,110)"), left{}(), format{}("%cnonce%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ToL1MessagePasser'Unds'sentMessages{}(SortInt{}) : SortL2ToL1MessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ToL1MessagePasser_sentMessages"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4706,42,4706,128)"), left{}(), format{}("%csentMessages%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'L2ToL1MessagePasser'Unds'version{}() : SortL2ToL1MessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_L2ToL1MessagePasser_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4708,42,4708,114)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH{}(SortLegacyERC20ETHContract{}, SortLegacyERC20ETHMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4758,26,4758,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'allowance{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_allowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4760,37,4760,120)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'approve{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4762,37,4762,116)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'balanceOf{}(SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4764,37,4764,112)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'bridge{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_bridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4766,37,4766,102)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'burn{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_burn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4768,37,4768,110)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'decimals{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4770,37,4770,106)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_decreaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4772,37,4772,136)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_increaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4774,37,4774,136)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'l1Token{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_l1Token"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4776,37,4776,104)"), left{}(), format{}("%cl1Token%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'l2Bridge{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_l2Bridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4778,37,4778,106)"), left{}(), format{}("%cl2Bridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'mint{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_mint"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4780,37,4780,110)"), left{}(), format{}("%cmint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'name{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4782,37,4782,98)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'remoteToken{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_remoteToken"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4784,37,4784,112)"), left{}(), format{}("%cremoteToken%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'supportsInterface{}(SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4786,37,4786,128)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'symbol{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4788,37,4788,102)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'totalSupply{}() : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4790,37,4790,112)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'transfer{}(SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4792,37,4792,118)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyERC20ETH'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortLegacyERC20ETHMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyERC20ETH_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4794,37,4794,134)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyMessagePasser{}(SortLegacyMessagePasserContract{}, SortLegacyMessagePasserMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyMessagePasser"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4944,26,4944,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'LegacyMessagePasser'Unds'passMessageToL1{}(SortBytes{}) : SortLegacyMessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyMessagePasser_passMessageToL1"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4946,42,4946,140)"), left{}(), format{}("%cpassMessageToL1%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyMessagePasser'Unds'sentMessages{}(SortInt{}) : SortLegacyMessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyMessagePasser_sentMessages"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4948,42,4948,128)"), left{}(), format{}("%csentMessages%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LegacyMessagePasser'Unds'version{}() : SortLegacyMessagePasserMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LegacyMessagePasser_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4950,42,4950,114)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Machinery{}(SortMachineryContract{}, SortMachineryMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Machinery"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4985,26,4985,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'Machinery'Unds'IS'Unds'TEST{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Machinery_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4987,32,4987,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Machinery'Unds'failed{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Machinery_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4989,32,4989,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Machinery'Unds'testAssertFalse{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Machinery_testAssertFalse"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4991,32,4991,110)"), left{}(), format{}("%ctestAssertFalse%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Machinery'Unds'testAssertTrue{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Machinery_testAssertTrue"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4993,32,4993,108)"), left{}(), format{}("%ctestAssertTrue%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Machinery'Unds'testAssume{}(SortInt{}) : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Machinery_testAssume"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4995,32,4995,104)"), left{}(), format{}("%ctestAssume%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Machinery'Unds'testCallAssertTrueExternal{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Machinery_testCallAssertTrueExternal"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4997,32,4997,132)"), left{}(), format{}("%ctestCallAssertTrueExternal%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Machinery'Unds'testNoOperation{}() : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Machinery_testNoOperation"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4999,32,4999,110)"), left{}(), format{}("%ctestNoOperation%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Machinery'Unds'testPassByteArrayInCalldata{}(SortBytes{}) : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Machinery_testPassByteArrayInCalldata"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5001,32,5001,144)"), left{}(), format{}("%ctestPassByteArrayInCalldata%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Machinery'Unds'testPassByteArrayInMemory{}(SortBytes{}) : SortMachineryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Machinery_testPassByteArrayInMemory"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5003,32,5003,140)"), left{}(), format{}("%ctestPassByteArrayInMemory%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered{}(SortMeteredContract{}, SortMeteredMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5101,26,5101,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'Metered'Unds'BASE'Unds'FEE'Unds'MAX'Unds'CHANGE'Unds'DENOMINATOR{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_BASE_FEE_MAX_CHANGE_DENOMINATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5103,30,5103,138)"), left{}(), format{}("%cBASE_FEE_MAX_CHANGE_DENOMINATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'ELASTICITY'Unds'MULTIPLIER{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_ELASTICITY_MULTIPLIER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5105,30,5105,118)"), left{}(), format{}("%cELASTICITY_MULTIPLIER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'INITIAL'Unds'BASE'Unds'FEE{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_INITIAL_BASE_FEE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5107,30,5107,108)"), left{}(), format{}("%cINITIAL_BASE_FEE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'IS'Unds'TEST{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5109,30,5109,90)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_MAX_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5111,30,5111,112)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'MINIMUM'Unds'BASE'Unds'FEE{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_MINIMUM_BASE_FEE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5113,30,5113,108)"), left{}(), format{}("%cMINIMUM_BASE_FEE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'TARGET'Unds'RESOURCE'Unds'LIMIT{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_TARGET_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5115,30,5115,118)"), left{}(), format{}("%cTARGET_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_depositTransaction"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5117,30,5117,154)"), left{}(), format{}("%cdepositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'failed{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5119,30,5119,88)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'init{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_init"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5121,30,5121,84)"), left{}(), format{}("%cinit%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'params{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_params"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5123,30,5123,88)"), left{}(), format{}("%cparams%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'setUp{}() : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5125,30,5125,86)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_test_depositTransaction"), priorities{}(), right{}(), terminals{}("1101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5127,30,5127,180)"), left{}(), format{}("%ctest_depositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_test_depositTransaction_emit_creationFalse"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5129,30,5129,194)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse'Unds'simplified{}(SortInt{}, SortInt{}, SortInt{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_test_depositTransaction_emit_creationFalse_simplified"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5131,30,5131,202)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse_simplified%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue{}(SortInt{}, SortInt{}, SortBytes{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_test_depositTransaction_emit_creationTrue"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5133,30,5133,184)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue'Unds'simplified{}(SortInt{}, SortInt{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_test_depositTransaction_emit_creationTrue_simplified"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5135,30,5135,192)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue_simplified%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'emit'Unds'sender'Unds'NotEqual'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_test_depositTransaction_emit_sender_NotEqual_origin"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5137,30,5137,212)"), left{}(), format{}("%ctest_depositTransaction_emit_sender_NotEqual_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'revert{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_test_depositTransaction_revert"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5139,30,5139,170)"), left{}(), format{}("%ctest_depositTransaction_revert%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'test'Unds'depositTransaction'Unds'revert'Unds'emptydata{}(SortInt{}, SortInt{}, SortInt{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_test_depositTransaction_revert_emptydata"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5141,30,5141,176)"), left{}(), format{}("%ctest_depositTransaction_revert_emptydata%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Metered'Unds'test'Unds'metered{}(SortInt{}) : SortMeteredMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Metered_test_metered"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5143,30,5143,104)"), left{}(), format{}("%ctest_metered%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator{}(SortMigrationSystemDictatorContract{}, SortMigrationSystemDictatorMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5329,26,5329,154)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'config{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_config"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5331,46,5331,120)"), left{}(), format{}("%cconfig%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'currentStep{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_currentStep"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5333,46,5333,130)"), left{}(), format{}("%ccurrentStep%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'owner{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5335,46,5335,118)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'renounceOwnership{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5337,46,5337,142)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step1{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_step1"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5339,46,5339,118)"), left{}(), format{}("%cstep1%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step2{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_step2"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5341,46,5341,118)"), left{}(), format{}("%cstep2%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step3{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_step3"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5343,46,5343,118)"), left{}(), format{}("%cstep3%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step4{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_step4"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5345,46,5345,118)"), left{}(), format{}("%cstep4%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step5{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_step5"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5347,46,5347,118)"), left{}(), format{}("%cstep5%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'step6{}() : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_step6"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5349,46,5349,118)"), left{}(), format{}("%cstep6%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MigrationSystemDictator'Unds'transferOwnership{}(SortInt{}) : SortMigrationSystemDictatorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MigrationSystemDictator_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5351,46,5351,146)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20{}(SortOptimismMintableERC20Contract{}, SortOptimismMintableERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5433,26,5433,148)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'OptimismMintableERC20Factory{}(SortOptimismMintableERC20FactoryContract{}, SortOptimismMintableERC20FactoryMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20Factory"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5619,26,5619,169)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'OptimismMintableERC20Factory'Unds'BRIDGE{}() : SortOptimismMintableERC20FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20Factory_BRIDGE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5621,51,5621,130)"), left{}(), format{}("%cBRIDGE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20Factory'Unds'bridge{}() : SortOptimismMintableERC20FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20Factory_bridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5623,51,5623,130)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20Factory'Unds'createOptimismMintableERC20{}(SortInt{}, SortString{}, SortString{}) : SortOptimismMintableERC20FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20Factory_createOptimismMintableERC20"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5625,51,5625,198)"), left{}(), format{}("%ccreateOptimismMintableERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20Factory'Unds'createStandardL2Token{}(SortInt{}, SortString{}, SortString{}) : SortOptimismMintableERC20FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20Factory_createStandardL2Token"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5627,51,5627,186)"), left{}(), format{}("%ccreateStandardL2Token%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20Factory'Unds'version{}() : SortOptimismMintableERC20FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20Factory_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5629,51,5629,132)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'allowance{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_allowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5435,44,5435,134)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'approve{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5437,44,5437,130)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'balanceOf{}(SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5439,44,5439,126)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'bridge{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_bridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5441,44,5441,116)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'burn{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_burn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5443,44,5443,124)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'decimals{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5445,44,5445,120)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'decreaseAllowance{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_decreaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5447,44,5447,150)"), left{}(), format{}("%cdecreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'increaseAllowance{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_increaseAllowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5449,44,5449,150)"), left{}(), format{}("%cincreaseAllowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'l1Token{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_l1Token"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5451,44,5451,118)"), left{}(), format{}("%cl1Token%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'l2Bridge{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_l2Bridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5453,44,5453,120)"), left{}(), format{}("%cl2Bridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'mint{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_mint"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5455,44,5455,124)"), left{}(), format{}("%cmint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'name{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5457,44,5457,112)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'remoteToken{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_remoteToken"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5459,44,5459,126)"), left{}(), format{}("%cremoteToken%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'supportsInterface{}(SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5461,44,5461,142)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'symbol{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5463,44,5463,116)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'totalSupply{}() : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5465,44,5465,126)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'transfer{}(SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5467,44,5467,132)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC20'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortOptimismMintableERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC20_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5469,44,5469,148)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721{}(SortOptimismMintableERC721Contract{}, SortOptimismMintableERC721Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5676,26,5676,151)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'OptimismMintableERC721Factory{}(SortOptimismMintableERC721FactoryContract{}, SortOptimismMintableERC721FactoryMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721Factory"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5927,26,5927,172)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'BRIDGE{}() : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721Factory_BRIDGE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5929,52,5929,132)"), left{}(), format{}("%cBRIDGE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'REMOTE'Unds'CHAIN'Unds'ID{}() : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721Factory_REMOTE_CHAIN_ID"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5931,52,5931,150)"), left{}(), format{}("%cREMOTE_CHAIN_ID%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'bridge{}() : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721Factory_bridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5933,52,5933,132)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'createOptimismMintableERC721{}(SortInt{}, SortString{}, SortString{}) : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721Factory_createOptimismMintableERC721"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5935,52,5935,202)"), left{}(), format{}("%ccreateOptimismMintableERC721%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'isOptimismMintableERC721{}(SortInt{}) : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721Factory_isOptimismMintableERC721"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5937,52,5937,172)"), left{}(), format{}("%cisOptimismMintableERC721%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'remoteChainId{}() : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721Factory_remoteChainId"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5939,52,5939,146)"), left{}(), format{}("%cremoteChainId%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721Factory'Unds'version{}() : SortOptimismMintableERC721FactoryMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721Factory_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5941,52,5941,134)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'BRIDGE{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_BRIDGE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5678,45,5678,118)"), left{}(), format{}("%cBRIDGE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'REMOTE'Unds'CHAIN'Unds'ID{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_REMOTE_CHAIN_ID"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5680,45,5680,136)"), left{}(), format{}("%cREMOTE_CHAIN_ID%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'REMOTE'Unds'TOKEN{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_REMOTE_TOKEN"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5682,45,5682,130)"), left{}(), format{}("%cREMOTE_TOKEN%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'approve{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5684,45,5684,132)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'balanceOf{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5686,45,5686,128)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'baseTokenURI{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_baseTokenURI"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5688,45,5688,130)"), left{}(), format{}("%cbaseTokenURI%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'bridge{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_bridge"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5690,45,5690,118)"), left{}(), format{}("%cbridge%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'burn{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_burn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5692,45,5692,126)"), left{}(), format{}("%cburn%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'getApproved{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_getApproved"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5694,45,5694,132)"), left{}(), format{}("%cgetApproved%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'isApprovedForAll{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_isApprovedForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5696,45,5696,150)"), left{}(), format{}("%cisApprovedForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'name{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5698,45,5698,114)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'ownerOf{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_ownerOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5700,45,5700,124)"), left{}(), format{}("%cownerOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'remoteChainId{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_remoteChainId"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5702,45,5702,132)"), left{}(), format{}("%cremoteChainId%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'remoteToken{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_remoteToken"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5704,45,5704,128)"), left{}(), format{}("%cremoteToken%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'safeMint{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_safeMint"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5706,45,5706,134)"), left{}(), format{}("%csafeMint%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'safeTransferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_safeTransferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5708,45,5708,158)"), left{}(), format{}("%csafeTransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'setApprovalForAll{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_setApprovalForAll"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5712,45,5712,152)"), left{}(), format{}("%csetApprovalForAll%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'supportsInterface{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_supportsInterface"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5714,45,5714,144)"), left{}(), format{}("%csupportsInterface%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'symbol{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5716,45,5716,118)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'tokenByIndex{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_tokenByIndex"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5718,45,5718,134)"), left{}(), format{}("%ctokenByIndex%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'tokenOfOwnerByIndex{}(SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_tokenOfOwnerByIndex"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5720,45,5720,156)"), left{}(), format{}("%ctokenOfOwnerByIndex%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'tokenURI{}(SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_tokenURI"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5722,45,5722,126)"), left{}(), format{}("%ctokenURI%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'totalSupply{}() : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5724,45,5724,128)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismMintableERC721'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortOptimismMintableERC721Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismMintableERC721_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5726,45,5726,150)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal{}(SortOptimismPortalContract{}, SortOptimismPortalMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6000,26,6000,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'BASE'Unds'FEE'Unds'MAX'Unds'CHANGE'Unds'DENOMINATOR{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_BASE_FEE_MAX_CHANGE_DENOMINATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6002,37,6002,152)"), left{}(), format{}("%cBASE_FEE_MAX_CHANGE_DENOMINATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'ELASTICITY'Unds'MULTIPLIER{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_ELASTICITY_MULTIPLIER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6004,37,6004,132)"), left{}(), format{}("%cELASTICITY_MULTIPLIER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'FINALIZATION'Unds'PERIOD'Unds'SECONDS{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_FINALIZATION_PERIOD_SECONDS"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6006,37,6006,144)"), left{}(), format{}("%cFINALIZATION_PERIOD_SECONDS%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'INITIAL'Unds'BASE'Unds'FEE{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_INITIAL_BASE_FEE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6008,37,6008,122)"), left{}(), format{}("%cINITIAL_BASE_FEE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'L2'Unds'ORACLE{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_L2_ORACLE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6010,37,6010,108)"), left{}(), format{}("%cL2_ORACLE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_MAX_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6012,37,6012,126)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'MINIMUM'Unds'BASE'Unds'FEE{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_MINIMUM_BASE_FEE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6014,37,6014,122)"), left{}(), format{}("%cMINIMUM_BASE_FEE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'TARGET'Unds'RESOURCE'Unds'LIMIT{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_TARGET_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6016,37,6016,132)"), left{}(), format{}("%cTARGET_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_depositTransaction"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6018,37,6018,168)"), left{}(), format{}("%cdepositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'donateETH{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_donateETH"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6020,37,6020,108)"), left{}(), format{}("%cdonateETH%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'finalizeWithdrawalTransaction{}(SortK{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_finalizeWithdrawalTransaction"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6022,37,6022,150)"), left{}(), format{}("%cfinalizeWithdrawalTransaction%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'finalizedWithdrawals{}(SortInt{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_finalizedWithdrawals"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6024,37,6024,134)"), left{}(), format{}("%cfinalizedWithdrawals%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'initialize{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_initialize"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6026,37,6026,110)"), left{}(), format{}("%cinitialize%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'isBlockFinalized{}(SortInt{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_isBlockFinalized"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6028,37,6028,126)"), left{}(), format{}("%cisBlockFinalized%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'l2Sender{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_l2Sender"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6030,37,6030,106)"), left{}(), format{}("%cl2Sender%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'params{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_params"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6032,37,6032,102)"), left{}(), format{}("%cparams%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'proveWithdrawalTransaction{}(SortK{}, SortInt{}, SortK{}, SortK{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_proveWithdrawalTransaction"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6034,37,6034,164)"), left{}(), format{}("%cproveWithdrawalTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'provenWithdrawals{}(SortInt{}) : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_provenWithdrawals"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6036,37,6036,128)"), left{}(), format{}("%cprovenWithdrawals%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptimismPortal'Unds'version{}() : SortOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptimismPortal_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6038,37,6038,104)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptmimismPortalTest{}(SortOptmimismPortalTestContract{}, SortOptmimismPortalTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6170,26,6170,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'OptmimismPortalTest'Unds'IS'Unds'TEST{}() : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6172,42,6172,114)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptmimismPortalTest'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest_MAX_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6174,42,6174,136)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptmimismPortalTest'Unds'failed{}() : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6176,42,6176,112)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptmimismPortalTest'Unds'setUp{}() : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6178,42,6178,110)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationFalse{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest_test_depositTransaction_emit_creationFalse"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6180,42,6180,218)"), left{}(), format{}("%ctest_depositTransaction_emit_creationFalse%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'emit'Unds'creationTrue{}(SortInt{}, SortInt{}, SortBytes{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest_test_depositTransaction_emit_creationTrue"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6182,42,6182,208)"), left{}(), format{}("%ctest_depositTransaction_emit_creationTrue%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'emit'Unds'sender'Unds'NotEqual'Unds'origin{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest_test_depositTransaction_emit_sender_NotEqual_origin"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6184,42,6184,236)"), left{}(), format{}("%ctest_depositTransaction_emit_sender_NotEqual_origin%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'revert{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest_test_depositTransaction_revert"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6186,42,6186,194)"), left{}(), format{}("%ctest_depositTransaction_revert%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'revert'Unds'bytes32data{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest_test_depositTransaction_revert_bytes32data"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6188,42,6188,212)"), left{}(), format{}("%ctest_depositTransaction_revert_bytes32data%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'OptmimismPortalTest'Unds'test'Unds'depositTransaction'Unds'revert'Unds'emptydata{}(SortInt{}, SortInt{}, SortInt{}) : SortOptmimismPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OptmimismPortalTest_test_depositTransaction_revert_emptydata"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6190,42,6190,200)"), left{}(), format{}("%ctest_depositTransaction_revert_emptydata%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Ownable{}(SortOwnableContract{}, SortOwnableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Ownable"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6293,26,6293,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'OwnableUpgradeable{}(SortOwnableUpgradeableContract{}, SortOwnableUpgradeableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnableUpgradeable"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6333,26,6333,139)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'OwnableUpgradeable'Unds'owner{}() : SortOwnableUpgradeableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnableUpgradeable_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6335,41,6335,108)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnableUpgradeable'Unds'renounceOwnership{}() : SortOwnableUpgradeableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnableUpgradeable_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6337,41,6337,132)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnableUpgradeable'Unds'transferOwnership{}(SortInt{}) : SortOwnableUpgradeableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnableUpgradeable_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6339,41,6339,136)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Ownable'Unds'owner{}() : SortOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Ownable_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6295,30,6295,86)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Ownable'Unds'renounceOwnership{}() : SortOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Ownable_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6297,30,6297,110)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Ownable'Unds'transferOwnership{}(SortInt{}) : SortOwnableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Ownable_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6299,30,6299,114)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'PausableUpgradeable{}(SortPausableUpgradeableContract{}, SortPausableUpgradeableMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PausableUpgradeable"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6373,26,6373,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'PausableUpgradeable'Unds'paused{}() : SortPausableUpgradeableMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PausableUpgradeable_paused"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6375,42,6375,112)"), left{}(), format{}("%cpaused%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PortalSender{}(SortPortalSenderContract{}, SortPortalSenderMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PortalSender"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6396,26,6396,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'PortalSender'Unds'PORTAL{}() : SortPortalSenderMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PortalSender_PORTAL"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6398,35,6398,98)"), left{}(), format{}("%cPORTAL%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PortalSender'Unds'donate{}() : SortPortalSenderMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PortalSender_donate"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6400,35,6400,98)"), left{}(), format{}("%cdonate%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Proxy{}(SortProxyContract{}, SortProxyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Proxy"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6440,26,6440,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ProxyAdmin{}(SortProxyAdminContract{}, SortProxyAdminMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6562,26,6562,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'addressManager{}() : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_addressManager"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6564,33,6564,110)"), left{}(), format{}("%caddressManager%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'changeProxyAdmin{}(SortInt{}, SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_changeProxyAdmin"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6566,33,6566,126)"), left{}(), format{}("%cchangeProxyAdmin%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'getProxyAdmin{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_getProxyAdmin"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6568,33,6568,112)"), left{}(), format{}("%cgetProxyAdmin%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'getProxyImplementation{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_getProxyImplementation"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6570,33,6570,130)"), left{}(), format{}("%cgetProxyImplementation%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'implementationName{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_implementationName"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6572,33,6572,122)"), left{}(), format{}("%cimplementationName%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'isUpgrading{}() : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_isUpgrading"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6574,33,6574,104)"), left{}(), format{}("%cisUpgrading%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'owner{}() : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6576,33,6576,92)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'proxyType{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_proxyType"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6578,33,6578,104)"), left{}(), format{}("%cproxyType%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'renounceOwnership{}() : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6580,33,6580,116)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'setAddress{}(SortString{}, SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_setAddress"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6582,33,6582,117)"), left{}(), format{}("%csetAddress%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'setAddressManager{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_setAddressManager"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6584,33,6584,120)"), left{}(), format{}("%csetAddressManager%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'setImplementationName{}(SortInt{}, SortString{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_setImplementationName"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6586,33,6586,139)"), left{}(), format{}("%csetImplementationName%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'setProxyType{}(SortInt{}, SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_setProxyType"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6588,33,6588,118)"), left{}(), format{}("%csetProxyType%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'setUpgrading{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_setUpgrading"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6590,33,6590,110)"), left{}(), format{}("%csetUpgrading%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'transferOwnership{}(SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6592,33,6592,120)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'upgrade{}(SortInt{}, SortInt{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_upgrade"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6594,33,6594,108)"), left{}(), format{}("%cupgrade%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ProxyAdmin'Unds'upgradeAndCall{}(SortInt{}, SortInt{}, SortBytes{}) : SortProxyAdminMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ProxyAdmin_upgradeAndCall"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6596,33,6596,136)"), left{}(), format{}("%cupgradeAndCall%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Proxy'Unds'admin{}() : SortProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Proxy_admin"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6442,28,6442,82)"), left{}(), format{}("%cadmin%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Proxy'Unds'changeAdmin{}(SortInt{}) : SortProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Proxy_changeAdmin"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6444,28,6444,98)"), left{}(), format{}("%cchangeAdmin%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Proxy'Unds'implementation{}() : SortProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Proxy_implementation"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6446,28,6446,100)"), left{}(), format{}("%cimplementation%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Proxy'Unds'upgradeTo{}(SortInt{}) : SortProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Proxy_upgradeTo"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6448,28,6448,94)"), left{}(), format{}("%cupgradeTo%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Proxy'Unds'upgradeToAndCall{}(SortInt{}, SortBytes{}) : SortProxyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Proxy_upgradeToAndCall"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6450,28,6450,122)"), left{}(), format{}("%cupgradeToAndCall%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ResourceMetering{}(SortResourceMeteringContract{}, SortResourceMeteringMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ResourceMetering"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6787,26,6787,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ResourceMetering'Unds'BASE'Unds'FEE'Unds'MAX'Unds'CHANGE'Unds'DENOMINATOR{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ResourceMetering_BASE_FEE_MAX_CHANGE_DENOMINATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6789,39,6789,156)"), left{}(), format{}("%cBASE_FEE_MAX_CHANGE_DENOMINATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ResourceMetering'Unds'ELASTICITY'Unds'MULTIPLIER{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ResourceMetering_ELASTICITY_MULTIPLIER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6791,39,6791,136)"), left{}(), format{}("%cELASTICITY_MULTIPLIER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ResourceMetering'Unds'INITIAL'Unds'BASE'Unds'FEE{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ResourceMetering_INITIAL_BASE_FEE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6793,39,6793,126)"), left{}(), format{}("%cINITIAL_BASE_FEE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ResourceMetering'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ResourceMetering_MAX_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6795,39,6795,130)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ResourceMetering'Unds'MINIMUM'Unds'BASE'Unds'FEE{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ResourceMetering_MINIMUM_BASE_FEE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6797,39,6797,126)"), left{}(), format{}("%cMINIMUM_BASE_FEE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ResourceMetering'Unds'TARGET'Unds'RESOURCE'Unds'LIMIT{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ResourceMetering_TARGET_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6799,39,6799,136)"), left{}(), format{}("%cTARGET_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ResourceMetering'Unds'params{}() : SortResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ResourceMetering_params"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6801,39,6801,106)"), left{}(), format{}("%cparams%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Semver{}(SortSemverContract{}, SortSemverMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Semver"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6910,26,6910,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'Semver'Unds'version{}() : SortSemverMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Semver_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6912,29,6912,88)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SequencerFeeVault{}(SortSequencerFeeVaultContract{}, SortSequencerFeeVaultMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SequencerFeeVault"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6933,26,6933,136)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SequencerFeeVault'Unds'MIN'Unds'WITHDRAWAL'Unds'AMOUNT{}() : SortSequencerFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SequencerFeeVault_MIN_WITHDRAWAL_AMOUNT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6935,40,6935,138)"), left{}(), format{}("%cMIN_WITHDRAWAL_AMOUNT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SequencerFeeVault'Unds'RECIPIENT{}() : SortSequencerFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SequencerFeeVault_RECIPIENT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6937,40,6937,114)"), left{}(), format{}("%cRECIPIENT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SequencerFeeVault'Unds'l1FeeWallet{}() : SortSequencerFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SequencerFeeVault_l1FeeWallet"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6939,40,6939,118)"), left{}(), format{}("%cl1FeeWallet%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SequencerFeeVault'Unds'version{}() : SortSequencerFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SequencerFeeVault_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6941,40,6941,110)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SequencerFeeVault'Unds'withdraw{}() : SortSequencerFeeVaultMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SequencerFeeVault_withdraw"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6943,40,6943,112)"), left{}(), format{}("%cwithdraw%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedOptimismPortal{}(SortSimplifiedOptimismPortalContract{}, SortSimplifiedOptimismPortalMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedOptimismPortal"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7040,26,7040,157)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SimplifiedOptimismPortal'Unds'depositTransaction{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortSimplifiedOptimismPortalMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedOptimismPortal_depositTransaction"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7042,47,7042,188)"), left{}(), format{}("%cdepositTransaction%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedPortalTest{}(SortSimplifiedPortalTestContract{}, SortSimplifiedPortalTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedPortalTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7069,26,7069,145)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SimplifiedPortalTest'Unds'IS'Unds'TEST{}() : SortSimplifiedPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedPortalTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7071,43,7071,116)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedPortalTest'Unds'failed{}() : SortSimplifiedPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedPortalTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7073,43,7073,114)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedPortalTest'Unds'setUp{}() : SortSimplifiedPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedPortalTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7075,43,7075,112)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedPortalTest'Unds'test'Unds'depositTransaction'Unds'revert{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortSimplifiedPortalTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedPortalTest_test_depositTransaction_revert"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7077,43,7077,196)"), left{}(), format{}("%ctest_depositTransaction_revert%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedResourceMetering{}(SortSimplifiedResourceMeteringContract{}, SortSimplifiedResourceMeteringMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedResourceMetering"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7121,26,7121,163)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'BASE'Unds'FEE'Unds'MAX'Unds'CHANGE'Unds'DENOMINATOR{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedResourceMetering_BASE_FEE_MAX_CHANGE_DENOMINATOR"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7123,49,7123,176)"), left{}(), format{}("%cBASE_FEE_MAX_CHANGE_DENOMINATOR%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'ELASTICITY'Unds'MULTIPLIER{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedResourceMetering_ELASTICITY_MULTIPLIER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7125,49,7125,156)"), left{}(), format{}("%cELASTICITY_MULTIPLIER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'INITIAL'Unds'BASE'Unds'FEE{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedResourceMetering_INITIAL_BASE_FEE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7127,49,7127,146)"), left{}(), format{}("%cINITIAL_BASE_FEE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'MAX'Unds'RESOURCE'Unds'LIMIT{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedResourceMetering_MAX_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7129,49,7129,150)"), left{}(), format{}("%cMAX_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'MINIMUM'Unds'BASE'Unds'FEE{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedResourceMetering_MINIMUM_BASE_FEE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7131,49,7131,146)"), left{}(), format{}("%cMINIMUM_BASE_FEE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'TARGET'Unds'RESOURCE'Unds'LIMIT{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedResourceMetering_TARGET_RESOURCE_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7133,49,7133,156)"), left{}(), format{}("%cTARGET_RESOURCE_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SimplifiedResourceMetering'Unds'params{}() : SortSimplifiedResourceMeteringMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SimplifiedResourceMetering_params"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7135,49,7135,126)"), left{}(), format{}("%cparams%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StandardBridge{}(SortStandardBridgeContract{}, SortStandardBridgeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7192,26,7192,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'StandardBridge'Unds'MESSENGER{}() : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge_MESSENGER"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7194,37,7194,108)"), left{}(), format{}("%cMESSENGER%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StandardBridge'Unds'OTHER'Unds'BRIDGE{}() : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge_OTHER_BRIDGE"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7196,37,7196,114)"), left{}(), format{}("%cOTHER_BRIDGE%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StandardBridge'Unds'bridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge_bridgeERC20"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7198,37,7198,154)"), left{}(), format{}("%cbridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'StandardBridge'Unds'bridgeERC20To{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge_bridgeERC20To"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7200,37,7200,166)"), left{}(), format{}("%cbridgeERC20To%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'StandardBridge'Unds'bridgeETH{}(SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge_bridgeETH"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7202,37,7202,126)"), left{}(), format{}("%cbridgeETH%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'StandardBridge'Unds'bridgeETHTo{}(SortInt{}, SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge_bridgeETHTo"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7204,37,7204,138)"), left{}(), format{}("%cbridgeETHTo%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'StandardBridge'Unds'deposits{}(SortInt{}, SortInt{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge_deposits"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7206,37,7206,118)"), left{}(), format{}("%cdeposits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'StandardBridge'Unds'finalizeBridgeERC20{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge_finalizeBridgeERC20"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7208,37,7208,178)"), left{}(), format{}("%cfinalizeBridgeERC20%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] + symbol Lblmethod'Unds'StandardBridge'Unds'finalizeBridgeETH{}(SortInt{}, SortInt{}, SortInt{}, SortBytes{}) : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge_finalizeBridgeETH"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7210,37,7210,158)"), left{}(), format{}("%cfinalizeBridgeETH%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'StandardBridge'Unds'messenger{}() : SortStandardBridgeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StandardBridge_messenger"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7212,37,7212,108)"), left{}(), format{}("%cmessenger%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StdAssertions{}(SortStdAssertionsContract{}, SortStdAssertionsMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StdAssertions"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7322,26,7322,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'StdAssertions'Unds'IS'Unds'TEST{}() : SortStdAssertionsMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StdAssertions_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7324,36,7324,102)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StdAssertions'Unds'failed{}() : SortStdAssertionsMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StdAssertions_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7326,36,7326,100)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig{}(SortSystemConfigContract{}, SortSystemConfigMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7860,26,7860,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'MINIMUM'Unds'GAS'Unds'LIMIT{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_MINIMUM_GAS_LIMIT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7862,35,7862,120)"), left{}(), format{}("%cMINIMUM_GAS_LIMIT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'VERSION{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_VERSION"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7864,35,7864,100)"), left{}(), format{}("%cVERSION%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'batcherHash{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_batcherHash"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7866,35,7866,108)"), left{}(), format{}("%cbatcherHash%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'gasLimit{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_gasLimit"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7868,35,7868,102)"), left{}(), format{}("%cgasLimit%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'initialize{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_initialize"), priorities{}(), right{}(), terminals{}("110101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7870,35,7870,142)"), left{}(), format{}("%cinitialize%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'overhead{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_overhead"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7872,35,7872,102)"), left{}(), format{}("%coverhead%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'owner{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7874,35,7874,96)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'renounceOwnership{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_renounceOwnership"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7876,35,7876,120)"), left{}(), format{}("%crenounceOwnership%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'scalar{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_scalar"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7878,35,7878,98)"), left{}(), format{}("%cscalar%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'setBatcherHash{}(SortInt{}) : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_setBatcherHash"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7880,35,7880,118)"), left{}(), format{}("%csetBatcherHash%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'setGasConfig{}(SortInt{}, SortInt{}) : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_setGasConfig"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7882,35,7882,122)"), left{}(), format{}("%csetGasConfig%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'setGasLimit{}(SortInt{}) : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_setGasLimit"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7884,35,7884,112)"), left{}(), format{}("%csetGasLimit%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'transferOwnership{}(SortInt{}) : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_transferOwnership"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7886,35,7886,124)"), left{}(), format{}("%ctransferOwnership%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SystemConfig'Unds'version{}() : SortSystemConfigMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SystemConfig_version"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7888,35,7888,100)"), left{}(), format{}("%cversion%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Test{}(SortTestContract{}, SortTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Test"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8030,26,8030,97)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'Test'Unds'IS'Unds'TEST{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Test_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8032,27,8032,84)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Test'Unds'failed{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Test_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8034,27,8034,82)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm{}(SortVmContract{}, SortVmMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8087,26,8087,91)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'VmSafe{}(SortVmSafeContract{}, SortVmSafeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9181,26,9181,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'VmSafe'Unds'accesses{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_accesses"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9183,29,9183,94)"), left{}(), format{}("%caccesses%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'addr{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_addr"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9185,29,9185,86)"), left{}(), format{}("%caddr%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'assume{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_assume"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9187,29,9187,90)"), left{}(), format{}("%cassume%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'broadcast{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_broadcast"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9189,29,9189,92)"), left{}(), format{}("%cbroadcast%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'closeFile{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_closeFile"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9195,29,9195,99)"), left{}(), format{}("%ccloseFile%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'deriveKey{}(SortString{}, SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_deriveKey"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9197,29,9197,107)"), left{}(), format{}("%cderiveKey%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'envAddress{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_envAddress"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9201,29,9201,101)"), left{}(), format{}("%cenvAddress%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'envBool{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_envBool"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9205,29,9205,95)"), left{}(), format{}("%cenvBool%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'envBytes{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_envBytes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9209,29,9209,97)"), left{}(), format{}("%cenvBytes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'envBytes32{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_envBytes32"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9213,29,9213,112)"), left{}(), format{}("%cenvBytes32%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'envInt{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_envInt"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9217,29,9217,104)"), left{}(), format{}("%cenvInt%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'envString{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_envString"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9221,29,9221,110)"), left{}(), format{}("%cenvString%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'envUint{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_envUint"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9225,29,9225,95)"), left{}(), format{}("%cenvUint%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'ffi{}(SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_ffi"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9229,29,9229,82)"), left{}(), format{}("%cffi%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'getCode{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_getCode"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9231,29,9231,95)"), left{}(), format{}("%cgetCode%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'getDeployedCode{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_getDeployedCode"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9233,29,9233,111)"), left{}(), format{}("%cgetDeployedCode%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'getNonce{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_getNonce"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9235,29,9235,94)"), left{}(), format{}("%cgetNonce%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'getRecordedLogs{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_getRecordedLogs"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9237,29,9237,104)"), left{}(), format{}("%cgetRecordedLogs%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'label{}(SortInt{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_label"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9239,29,9239,99)"), left{}(), format{}("%clabel%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'load{}(SortInt{}, SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_load"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9241,29,9241,94)"), left{}(), format{}("%cload%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'parseAddress{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_parseAddress"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9243,29,9243,105)"), left{}(), format{}("%cparseAddress%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'parseBool{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_parseBool"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9245,29,9245,99)"), left{}(), format{}("%cparseBool%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'parseBytes{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_parseBytes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9247,29,9247,101)"), left{}(), format{}("%cparseBytes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'parseBytes32{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_parseBytes32"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9249,29,9249,105)"), left{}(), format{}("%cparseBytes32%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'parseInt{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_parseInt"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9251,29,9251,97)"), left{}(), format{}("%cparseInt%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'parseJson{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_parseJson"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9253,29,9253,99)"), left{}(), format{}("%cparseJson%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'parseUint{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_parseUint"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9257,29,9257,99)"), left{}(), format{}("%cparseUint%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'projectRoot{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_projectRoot"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9259,29,9259,96)"), left{}(), format{}("%cprojectRoot%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'readFile{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_readFile"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9261,29,9261,97)"), left{}(), format{}("%creadFile%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'readFileBinary{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_readFileBinary"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9263,29,9263,109)"), left{}(), format{}("%creadFileBinary%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'readLine{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_readLine"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9265,29,9265,97)"), left{}(), format{}("%creadLine%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'record{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_record"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9267,29,9267,86)"), left{}(), format{}("%crecord%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'recordLogs{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_recordLogs"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9269,29,9269,94)"), left{}(), format{}("%crecordLogs%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'rememberKey{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_rememberKey"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9271,29,9271,100)"), left{}(), format{}("%crememberKey%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'removeFile{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_removeFile"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9273,29,9273,101)"), left{}(), format{}("%cremoveFile%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'rpcUrl{}(SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_rpcUrl"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9275,29,9275,93)"), left{}(), format{}("%crpcUrl%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'rpcUrlStructs{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_rpcUrlStructs"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9277,29,9277,100)"), left{}(), format{}("%crpcUrlStructs%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'rpcUrls{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_rpcUrls"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9279,29,9279,88)"), left{}(), format{}("%crpcUrls%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'serializeAddress{}(SortString{}, SortString{}, SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_serializeAddress"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9281,29,9281,130)"), left{}(), format{}("%cserializeAddress%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'serializeBool{}(SortString{}, SortString{}, SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_serializeBool"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9285,29,9285,124)"), left{}(), format{}("%cserializeBool%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'serializeBytes{}(SortString{}, SortString{}, SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_serializeBytes"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9289,29,9289,126)"), left{}(), format{}("%cserializeBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'serializeBytes32{}(SortString{}, SortString{}, SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_serializeBytes32"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9293,29,9293,130)"), left{}(), format{}("%cserializeBytes32%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'serializeInt{}(SortString{}, SortString{}, SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_serializeInt"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9297,29,9297,124)"), left{}(), format{}("%cserializeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'serializeString{}(SortString{}, SortString{}, SortK{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_serializeString"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9301,29,9301,128)"), left{}(), format{}("%cserializeString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'serializeUint{}(SortString{}, SortString{}, SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_serializeUint"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9305,29,9305,126)"), left{}(), format{}("%cserializeUint%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'setEnv{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_setEnv"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9309,29,9309,104)"), left{}(), format{}("%csetEnv%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'sign{}(SortInt{}, SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_sign"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9311,29,9311,94)"), left{}(), format{}("%csign%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'startBroadcast{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_startBroadcast"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9313,29,9313,102)"), left{}(), format{}("%cstartBroadcast%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'stopBroadcast{}() : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_stopBroadcast"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9319,29,9319,100)"), left{}(), format{}("%cstopBroadcast%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'toString{}(SortInt{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_toString"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9321,29,9321,94)"), left{}(), format{}("%ctoString%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'writeFile{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_writeFile"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9333,29,9333,110)"), left{}(), format{}("%cwriteFile%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'writeFileBinary{}(SortString{}, SortBytes{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_writeFileBinary"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9335,29,9335,125)"), left{}(), format{}("%cwriteFileBinary%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'writeJson{}(SortString{}, SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_writeJson"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9337,29,9337,121)"), left{}(), format{}("%cwriteJson%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'VmSafe'Unds'writeLine{}(SortString{}, SortString{}) : SortVmSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_VmSafe_writeLine"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9341,29,9341,110)"), left{}(), format{}("%cwriteLine%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'accesses{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_accesses"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8089,25,8089,86)"), left{}(), format{}("%caccesses%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'activeFork{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_activeFork"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8091,25,8091,86)"), left{}(), format{}("%cactiveFork%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'addr{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_addr"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8093,25,8093,78)"), left{}(), format{}("%caddr%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'allowCheatcodes{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_allowCheatcodes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8095,25,8095,100)"), left{}(), format{}("%callowCheatcodes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'assume{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_assume"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8097,25,8097,82)"), left{}(), format{}("%cassume%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'broadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_broadcast"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8099,25,8099,84)"), left{}(), format{}("%cbroadcast%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'chainId{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_chainId"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8105,25,8105,84)"), left{}(), format{}("%cchainId%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'clearMockedCalls{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_clearMockedCalls"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8107,25,8107,98)"), left{}(), format{}("%cclearMockedCalls%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'closeFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_closeFile"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8109,25,8109,91)"), left{}(), format{}("%ccloseFile%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'coinbase{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_coinbase"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8111,25,8111,86)"), left{}(), format{}("%ccoinbase%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'createFork{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_createFork"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8113,25,8113,93)"), left{}(), format{}("%ccreateFork%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'createSelectFork{}(SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_createSelectFork"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8119,25,8119,113)"), left{}(), format{}("%ccreateSelectFork%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'deal{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_deal"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8125,25,8125,86)"), left{}(), format{}("%cdeal%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'deriveKey{}(SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_deriveKey"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8127,25,8127,99)"), left{}(), format{}("%cderiveKey%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'difficulty{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_difficulty"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8131,25,8131,90)"), left{}(), format{}("%cdifficulty%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envAddress{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envAddress"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8133,25,8133,93)"), left{}(), format{}("%cenvAddress%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envBool{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envBool"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8137,25,8137,87)"), left{}(), format{}("%cenvBool%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envBytes{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envBytes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8141,25,8141,89)"), left{}(), format{}("%cenvBytes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envBytes32{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envBytes32"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8145,25,8145,104)"), left{}(), format{}("%cenvBytes32%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envInt{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envInt"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8149,25,8149,96)"), left{}(), format{}("%cenvInt%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envString{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envString"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8153,25,8153,102)"), left{}(), format{}("%cenvString%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envUint{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envUint"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8157,25,8157,87)"), left{}(), format{}("%cenvUint%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'etch{}(SortInt{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_etch"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8161,25,8161,92)"), left{}(), format{}("%cetch%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'expectCall{}(SortInt{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_expectCall"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8163,25,8163,104)"), left{}(), format{}("%cexpectCall%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'expectEmit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_expectEmit"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8167,25,8167,114)"), left{}(), format{}("%cexpectEmit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'expectRevert{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_expectRevert"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8171,25,8171,94)"), left{}(), format{}("%cexpectRevert%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'fee{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_fee"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8177,25,8177,76)"), left{}(), format{}("%cfee%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'ffi{}(SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_ffi"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8179,25,8179,74)"), left{}(), format{}("%cffi%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'getCode{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_getCode"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8181,25,8181,87)"), left{}(), format{}("%cgetCode%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'getDeployedCode{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_getDeployedCode"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8183,25,8183,103)"), left{}(), format{}("%cgetDeployedCode%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'getNonce{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_getNonce"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8185,25,8185,86)"), left{}(), format{}("%cgetNonce%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'getRecordedLogs{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_getRecordedLogs"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8187,25,8187,96)"), left{}(), format{}("%cgetRecordedLogs%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'isPersistent{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_isPersistent"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8189,25,8189,94)"), left{}(), format{}("%cisPersistent%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'label{}(SortInt{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_label"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8191,25,8191,91)"), left{}(), format{}("%clabel%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'load{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_load"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8193,25,8193,86)"), left{}(), format{}("%cload%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'makePersistent{}(SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_makePersistent"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8195,25,8195,96)"), left{}(), format{}("%cmakePersistent%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'mockCall{}(SortInt{}, SortInt{}, SortBytes{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_mockCall"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8203,25,8203,122)"), left{}(), format{}("%cmockCall%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'parseAddress{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_parseAddress"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8207,25,8207,97)"), left{}(), format{}("%cparseAddress%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'parseBool{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_parseBool"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8209,25,8209,91)"), left{}(), format{}("%cparseBool%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'parseBytes{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_parseBytes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8211,25,8211,93)"), left{}(), format{}("%cparseBytes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'parseBytes32{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_parseBytes32"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8213,25,8213,97)"), left{}(), format{}("%cparseBytes32%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'parseInt{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_parseInt"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8215,25,8215,89)"), left{}(), format{}("%cparseInt%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'parseJson{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_parseJson"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8217,25,8217,91)"), left{}(), format{}("%cparseJson%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'parseUint{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_parseUint"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8221,25,8221,91)"), left{}(), format{}("%cparseUint%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'prank{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_prank"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8223,25,8223,88)"), left{}(), format{}("%cprank%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'projectRoot{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_projectRoot"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8227,25,8227,88)"), left{}(), format{}("%cprojectRoot%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'readFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_readFile"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8229,25,8229,89)"), left{}(), format{}("%creadFile%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'readFileBinary{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_readFileBinary"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8231,25,8231,101)"), left{}(), format{}("%creadFileBinary%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'readLine{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_readLine"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8233,25,8233,89)"), left{}(), format{}("%creadLine%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'record{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_record"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8235,25,8235,78)"), left{}(), format{}("%crecord%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'recordLogs{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_recordLogs"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8237,25,8237,86)"), left{}(), format{}("%crecordLogs%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'rememberKey{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_rememberKey"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8239,25,8239,92)"), left{}(), format{}("%crememberKey%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'removeFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_removeFile"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8241,25,8241,93)"), left{}(), format{}("%cremoveFile%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'revertTo{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_revertTo"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8243,25,8243,86)"), left{}(), format{}("%crevertTo%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'revokePersistent{}(SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_revokePersistent"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8245,25,8245,100)"), left{}(), format{}("%crevokePersistent%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'roll{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_roll"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8249,25,8249,78)"), left{}(), format{}("%croll%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'rollFork{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_rollFork"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8251,25,8251,86)"), left{}(), format{}("%crollFork%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'rpcUrl{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_rpcUrl"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8259,25,8259,85)"), left{}(), format{}("%crpcUrl%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'rpcUrlStructs{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_rpcUrlStructs"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8261,25,8261,92)"), left{}(), format{}("%crpcUrlStructs%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'rpcUrls{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_rpcUrls"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8263,25,8263,80)"), left{}(), format{}("%crpcUrls%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'selectFork{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_selectFork"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8265,25,8265,90)"), left{}(), format{}("%cselectFork%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'serializeAddress{}(SortString{}, SortString{}, SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_serializeAddress"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8267,25,8267,122)"), left{}(), format{}("%cserializeAddress%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'serializeBool{}(SortString{}, SortString{}, SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_serializeBool"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8271,25,8271,116)"), left{}(), format{}("%cserializeBool%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'serializeBytes{}(SortString{}, SortString{}, SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_serializeBytes"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8275,25,8275,118)"), left{}(), format{}("%cserializeBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'serializeBytes32{}(SortString{}, SortString{}, SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_serializeBytes32"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8279,25,8279,122)"), left{}(), format{}("%cserializeBytes32%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'serializeInt{}(SortString{}, SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_serializeInt"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8283,25,8283,116)"), left{}(), format{}("%cserializeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'serializeString{}(SortString{}, SortString{}, SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_serializeString"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8287,25,8287,120)"), left{}(), format{}("%cserializeString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'serializeUint{}(SortString{}, SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_serializeUint"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8291,25,8291,118)"), left{}(), format{}("%cserializeUint%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'setEnv{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_setEnv"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8295,25,8295,96)"), left{}(), format{}("%csetEnv%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'setNonce{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_setNonce"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8297,25,8297,94)"), left{}(), format{}("%csetNonce%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'sign{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_sign"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8299,25,8299,86)"), left{}(), format{}("%csign%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'snapshot{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_snapshot"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8301,25,8301,82)"), left{}(), format{}("%csnapshot%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'startBroadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_startBroadcast"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8303,25,8303,94)"), left{}(), format{}("%cstartBroadcast%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'startPrank{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_startPrank"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8309,25,8309,90)"), left{}(), format{}("%cstartPrank%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'stopBroadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_stopBroadcast"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8313,25,8313,92)"), left{}(), format{}("%cstopBroadcast%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'stopPrank{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_stopPrank"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8315,25,8315,84)"), left{}(), format{}("%cstopPrank%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'store{}(SortInt{}, SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_store"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8317,25,8317,96)"), left{}(), format{}("%cstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'toString{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_toString"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8319,25,8319,86)"), left{}(), format{}("%ctoString%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'transact{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_transact"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8331,25,8331,94)"), left{}(), format{}("%ctransact%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'warp{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_warp"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8335,25,8335,78)"), left{}(), format{}("%cwarp%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'writeFile{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_writeFile"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8337,25,8337,102)"), left{}(), format{}("%cwriteFile%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'writeFileBinary{}(SortString{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_writeFileBinary"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8339,25,8339,117)"), left{}(), format{}("%cwriteFileBinary%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'writeJson{}(SortString{}, SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_writeJson"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8341,25,8341,113)"), left{}(), format{}("%cwriteJson%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'writeLine{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_writeLine"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8345,25,8345,102)"), left{}(), format{}("%cwriteLine%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9{}(SortWETH9Contract{}, SortWETH9Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9828,26,9828,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'WETH9'Unds'allowance{}(SortInt{}, SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_allowance"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9830,28,9830,102)"), left{}(), format{}("%callowance%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9'Unds'approve{}(SortInt{}, SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9832,28,9832,98)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9'Unds'balanceOf{}(SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9834,28,9834,94)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9'Unds'decimals{}() : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9836,28,9836,88)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9'Unds'deposit{}() : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_deposit"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9838,28,9838,86)"), left{}(), format{}("%cdeposit%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9'Unds'name{}() : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_name"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9840,28,9840,80)"), left{}(), format{}("%cname%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9'Unds'symbol{}() : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9842,28,9842,84)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9'Unds'totalSupply{}() : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9844,28,9844,94)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9'Unds'transfer{}(SortInt{}, SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9846,28,9846,100)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9848,28,9848,116)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'WETH9'Unds'withdraw{}(SortInt{}) : SortWETH9Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_WETH9_withdraw"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9850,28,9850,92)"), left{}(), format{}("%cwithdraw%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError{}(SortStdErrorContract{}, SortStdErrorMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7379,26,7379,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'stdError'Unds'arithmeticError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_arithmeticError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7381,31,7381,108)"), left{}(), format{}("%carithmeticError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'assertionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_assertionError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7383,31,7383,106)"), left{}(), format{}("%cassertionError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'divisionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_divisionError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7385,31,7385,104)"), left{}(), format{}("%cdivisionError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'encodeStorageError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_encodeStorageError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7387,31,7387,114)"), left{}(), format{}("%cencodeStorageError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'enumConversionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_enumConversionError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7389,31,7389,116)"), left{}(), format{}("%cenumConversionError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'indexOOBError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_indexOOBError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7391,31,7391,104)"), left{}(), format{}("%cindexOOBError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'memOverflowError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_memOverflowError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7393,31,7393,110)"), left{}(), format{}("%cmemOverflowError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'popError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_popError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7395,31,7395,94)"), left{}(), format{}("%cpopError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'zeroVarError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/petarmax/Projects/RV/_audits_Ethereum-optimism_optimism/optimism_foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_zeroVarError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(7397,31,7397,102)"), left{}(), format{}("%czeroVarError%r %c(%r %c)%r"), injective{}()] hooked-symbol LblminInt'LParUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), smt-hook{}("(ite (< #1 #2) #1 #2)"), right{}(), terminals{}("110101"), hook{}("INT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1070,18,1070,114)"), left{}(), format{}("%cminInt%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblminSFixed128x10'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(166,20,166,45)"), left{}(), format{}("%cminSFixed128x10%r"), alias'Kywd'{}(), injective{}()] symbol LblminSInt128'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,20,98,45)"), left{}(), format{}("%cminSInt128%r"), alias'Kywd'{}(), injective{}()] @@ -3390,7 +3390,7 @@ module FOUNDRY-MAIN symbol LblnoTxTypeCell{}() : SortTxTypeCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("TxTypeCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoTxTypeCell%r"), injective{}()] symbol LblnoValueCell{}() : SortValueCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("ValueCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoValueCell%r"), injective{}()] symbol LblnoWordStackCell{}() : SortWordStackCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("WordStackCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoWordStackCell%r"), injective{}()] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), klabel{}("notBool_"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(910,19,910,172)"), left{}(), format{}("%cnotBool%r %1"), function{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("notBool_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(910,19,910,172)"), left{}(), format{}("%cnotBool%r %1"), function{}()] symbol LblnotMaxUInt160'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,20,246,43)"), left{}(), format{}("%cnotMaxUInt160%r"), alias'Kywd'{}(), injective{}()] symbol LblnotMaxUInt224'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(247,20,247,43)"), left{}(), format{}("%cnotMaxUInt224%r"), alias'Kywd'{}(), injective{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("ordChar"), hook{}("STRING.ord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1540,18,1540,70)"), left{}(), format{}("%cordChar%r %c(%r %1 %c)%r"), function{}()] @@ -3993,7 +3993,7 @@ module FOUNDRY-MAIN symbol LblsetBloomFilterBits'LParUndsRParUnds'EVM'Unds'Int'Unds'ByteArray{}(SortBytes{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("setBloomFilterBits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,20,725,60)"), left{}(), format{}("%csetBloomFilterBits%r %c(%r %1 %c)%r"), function{}()] symbol Lblsgn'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sgn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,20,45,49)"), left{}(), format{}("%csgn%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("signExtendBitRangeInt"), hook{}("INT.signExtendBitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,18,1105,113)"), left{}(), format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("signedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1853,25,1853,63)"), left{}(), format{}("%cSigned%r"), injective{}()] + symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("signedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1853,25,1853,63)"), left{}(), format{}("%cSigned%r"), injective{}()] symbol Lblsignextend'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("signextend"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,20,209,61)"), left{}(), format{}("%csignextend%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), klabel{}("sizeList"), hook{}("LIST.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(830,18,830,117)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sizeMap"), hook{}("MAP.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(373,18,373,99)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] @@ -4002,15 +4002,15 @@ module FOUNDRY-MAIN hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("srandInt"), hook{}("INT.srand"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1139,16,1139,65)"), left{}(), format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsubstrBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("substrBytes"), hook{}("BYTES.substr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1927,20,1927,101)"), left{}(), format{}("%csubstrBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblsubstrString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'String'Unds'Int'Unds'Int{}(SortString{}, SortInt{}, SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("substrString"), hook{}("STRING.substr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1555,21,1555,117)"), left{}(), format{}("%csubstrString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblunparseByteStack{}(SortBytes{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unparseByteStack"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(208,23,208,99)"), left{}(), format{}("%c#unparseByteStack%r %c(%r %1 %c)%r"), function{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("unsignedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1854,25,1854,67)"), left{}(), format{}("%cUnsigned%r"), injective{}()] + symbol LblunparseByteStack{}(SortBytes{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}("unparseByteStack"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(208,23,208,99)"), left{}(), format{}("%c#unparseByteStack%r %c(%r %1 %c)%r"), function{}()] + symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("unsignedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1854,25,1854,67)"), left{}(), format{}("%cUnsigned%r"), injective{}()] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("updateList"), hook{}("LIST.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(794,19,794,97)"), left{}(), format{}("%cupdateList%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("updateMap"), hook{}("MAP.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), left{}(), format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("values"), hook{}("MAP.values"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), left{}(), format{}("%cvalues%r %c(%r %1 %c)%r"), function{}()] symbol Lblword2Bool'LParUndsRParUnds'EVM-TYPES'Unds'Bool'Unds'Int{}(SortInt{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("word2Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,21,35,56)"), left{}(), format{}("%cword2Bool%r %c(%r %1 %c)%r"), function{}()] symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'ByteArray{}(SortInt{}, SortList{}, SortBytes{}) : SortSubstateLogEntry{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1010101"), klabel{}("logEntry"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(545,33,545,86)"), left{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), injective{}()] symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM'Unds'Accounts'Unds'AccountsCellFragment'Unds'Set'Unds'SubstateCellFragment{}(SortAccountsCellFragment{}, SortSet{}, SortSubstateCellFragment{}) : SortAccounts{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(228,25,228,86)"), left{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), injective{}()] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), klabel{}("~Int_"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1038,18,1038,168)"), left{}(), format{}("%c~Int%r %1"), function{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/kb8lpxx9mvqp66b4dpdk8x6lm4nggnwh-k-5.5.47-75ca1f913ba01f2da1434d82d6b37e70cab5db0e-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("~Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1038,18,1038,168)"), left{}(), format{}("%c~Int%r %1"), function{}()] symbol Lbl'Tild'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/zar3js5rm9xmswmihipd6p7mgkriqqwq-kevm-dirty/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(163,20,163,55)"), left{}(), format{}("%c~Word%r %1"), function{}()] // generated axioms diff --git a/test/regression-evm/test-dsvalue-peek-pass-rough-definition.kore b/test/regression-evm/test-dsvalue-peek-pass-rough-definition.kore index f5c074eefd..c3fdd93811 100644 --- a/test/regression-evm/test-dsvalue-peek-pass-rough-definition.kore +++ b/test/regression-evm/test-dsvalue-peek-pass-rough-definition.kore @@ -493,9 +493,9 @@ module VERIFICATION symbol Lbl'Hash'asInteger'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asInteger%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asInteger"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,20,349,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'Hash'asWord'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asWord%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asWord"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(345,20,345,71)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("asWord"), terminals{}("1101"), total{}()] symbol Lbl'Hash'asmTxPrefix'LParUndsRParUnds'EVM-TYPES'Unds'TxType'Unds'Int{}(SortInt{}) : SortTxType{} [format{}("%c#asmTxPrefix%r %c(%r %1 %c)%r"), function{}(), klabel{}("#asmTxPrefix"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(453,23,453,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("#blockHashHeaderBaseFeeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("#blockHashHeaderBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("#blockHashHeaderWithdrawalsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBaseFeeBytes"), terminals{}("1101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBytes"), terminals{}("11010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderWithdrawalsBytes"), terminals{}("110101010101010101010101010101010101")] symbol Lbl'Hash'blockhash'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'List'Unds'Int'Unds'Int'Unds'Int{}(SortList{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockhash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), klabel{}("#blockhash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,20,1001,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101010101")] symbol Lbl'Hash'bloomFilter'LParUndsRParUnds'EVM'Unds'Bytes'Unds'List{}(SortList{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c)%r"), function{}(), klabel{}("#bloomFilter"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(679,22,679,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lbl'Hash'bloomFilter'LParUndsCommUndsRParUnds'EVM'Unds'Bytes'Unds'List'Unds'Int{}(SortList{}, SortInt{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("#bloomFilterAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(680,22,680,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -723,16 +723,16 @@ module VERIFICATION hooked-symbol Lbl'Stop'AccountCellMap{}() : SortAccountCellMap{} [format{}("%c.AccountCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'Account'Unds'EVM-TYPES'Unds'Account{}() : SortAccount{} [constructor{}(), format{}("%c.Account%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(387,24,387,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [format{}("%c.Bytes%r"), function{}(), functional{}(), hook{}("BYTES.empty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2003,20,2003,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), klabel{}(".List{\"JSONs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), userList{}("*")] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".List{\"JSONs\"}"), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs'QuotRBraUnds'EventArgs{}() : SortEventArgs{} [constructor{}(), format{}("%c.EventArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"eventArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs'QuotRBraUnds'TypedArgs{}() : SortTypedArgs{} [constructor{}(), format{}("%c.TypedArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"typedArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'HASHED-LOCATIONS'Unds'IntList'Unds'Int'Unds'IntList'QuotRBraUnds'IntList{}() : SortIntList{} [constructor{}(), format{}("%c.IntList%r"), functional{}(), injective{}(), klabel{}(".List{\"intList\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,24,66,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), smtlib{}("intList"), terminals{}("1"), userList{}("*")] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] symbol Lbl'Stop'MerkleTree'Unds'SERIALIZATION'Unds'MerkleTree{}() : SortMerkleTree{} [constructor{}(), format{}("%c.MerkleTree%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(434,27,434,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'MessageCellMap{}() : SortMessageCellMap{} [format{}("%c.MessageCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'NoOpCode'Unds'EVM'Unds'MaybeOpCode{}() : SortMaybeOpCode{} [constructor{}(), format{}("%c.NoOpCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(280,28,280,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'Stop'StatusCode'Unds'NETWORK'Unds'StatusCode{}() : SortStatusCode{} [constructor{}(), format{}("%c.StatusCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/network.md)"), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'StringBuffer'Unds'STRING-BUFFER-IN-K'Unds'StringBuffer{}() : SortStringBuffer{} [format{}("%c.StringBuffer%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1930,27,1930,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] symbol Lbl'Stop'TxType'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%c.TxType%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,23,441,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -846,14 +846,14 @@ module VERIFICATION symbol LblAccountCellMapKey{}(SortAccountCell{}) : SortAcctIDCell{} [format{}("%cAccountCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblBALANCE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBALANCE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1131,26,1131,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBASEFEE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cBASEFEE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,69,948,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), klabel{}("BERLIN_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}("BERLIN_EVM"), terminals{}("1")] symbol LblBLAKE2F'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cBLAKE2F%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,30,1788,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBLOCKHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBLOCKHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(990,26,990,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblBN128Add'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'G1Point{}(SortG1Point{}, SortG1Point{}) : SortG1Point{} [format{}("%cBN128Add%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128add"), klabel{}("BN128Add"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,24,103,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128AtePairing'LParUndsCommUndsRParUnds'KRYPTO'Unds'Bool'Unds'List'Unds'List{}(SortList{}, SortList{}) : SortBool{} [format{}("%cBN128AtePairing%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128ate"), klabel{}("BN128AtePairing"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,21,107,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128Mul'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'Int{}(SortG1Point{}, SortInt{}) : SortG1Point{} [format{}("%cBN128Mul%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128mul"), klabel{}("BN128Mul"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblBYTE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cBYTE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,27,909,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), klabel{}("BYZANTIUM_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}("BYZANTIUM_EVM"), terminals{}("1")] hooked-symbol LblBase2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortString{} [format{}("%cBase2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.base2string"), klabel{}("Base2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,21,1812,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBlake2Compress'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cBlake2Compress%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.blake2compress"), klabel{}("Blake2Compress"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,106)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblBool2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Bool{}(SortBool{}) : SortString{} [format{}("%cBool2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("Bool2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1762,21,1762,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -870,7 +870,7 @@ module VERIFICATION symbol LblCODECOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,28,984,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCODESIZE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(979,38,979,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCOINBASE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCOINBASE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,28,956,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), klabel{}("CONSTANTINOPLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}("CONSTANTINOPLE_EVM"), terminals{}("1")] symbol LblCREATE2'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cCREATE2%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1599,28,1599,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCREATE'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCREATE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1572,28,1572,36)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCaddraccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCaddraccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Caddraccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Caddraccess"), terminals{}("110101"), total{}()] @@ -894,7 +894,7 @@ module VERIFICATION symbol LblCsstore'LParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int'Unds'Int'Unds'Int{}(SortSchedule{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cCsstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), functional{}(), klabel{}("Csstore"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,20,107,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Csstore"), terminals{}("1101010101"), total{}()] symbol LblCstorageaccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCstorageaccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cstorageaccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cstorageaccess"), terminals{}("110101"), total{}()] symbol LblCxfer'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int{}(SortSchedule{}, SortInt{}) : SortInt{} [format{}("%cCxfer%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cxfer"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,20,111,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cxfer"), terminals{}("110101"), total{}()] - symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), klabel{}("DEFAULT_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}("DEFAULT_EVM"), terminals{}("1")] symbol LblDELEGATECALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cDELEGATECALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1432,26,1432,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIFFICULTY'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cDIFFICULTY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,66,956,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIV'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cDIV%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,51,890,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -942,7 +942,7 @@ module VERIFICATION symbol LblEXTCODESIZE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1142,26,1142,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEnd'Unds'bin'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cEnd_bin%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,22,102,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEnd'Unds'bin'Unds'runtime'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cEnd_bin_runtime%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,22,106,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), klabel{}("FRONTIER_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}("FRONTIER_EVM"), terminals{}("1")] symbol LblFlapper'Unds'bin'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cFlapper_bin%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,22,86,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblFlapper'Unds'bin'Unds'runtime'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cFlapper_bin_runtime%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,22,90,51)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblFlipper'Unds'bin'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cFlipper_bin%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,22,70,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] @@ -1028,21 +1028,21 @@ module VERIFICATION symbol LblGwarmstorageread'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGwarmstorageread%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,129,49,147)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzero'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGzero%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,30,43,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzerovaluenewaccountgas'Unds'SCHEDULE'Unds'ScheduleFlag{}() : SortScheduleFlag{} [constructor{}(), format{}("%cGzerovaluenewaccountgas%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,102,26,127)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), klabel{}("HOMESTEAD_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}("HOMESTEAD_EVM"), terminals{}("1")] symbol LblHPEncodeAux'LParUndsRParUnds'SERIALIZATION'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cHPEncodeAux%r %c(%r %1 %c)%r"), function{}(), klabel{}("HPEncodeAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(564,20,564,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblID'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1714,30,1714,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblINVALID'Unds'EVM'Unds'InvalidOp{}() : SortInvalidOp{} [constructor{}(), format{}("%cINVALID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,26,829,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), klabel{}("ISTANBUL_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}("ISTANBUL_EVM"), terminals{}("1")] symbol LblISZERO'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cISZERO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,26,885,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Endianness'Unds'Signedness{}(SortInt{}, SortEndianness{}, SortSignedness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("Int2BytesNoLen"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2054,20,2054,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("BYTES.int2bytes"), klabel{}("Int2Bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2053,20,2053,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.int2string"), klabel{}("Int2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1811,21,1811,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblJSON2String'LParUndsRParUnds'JSON'Unds'String'Unds'JSON{}(SortJSON{}) : SortString{} [format{}("%cJSON2String%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.json2string"), klabel{}("JSON2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,23,43,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), klabel{}("JSONEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), klabel{}("JSONList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), klabel{}("JSONObject"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), klabel{}("JSONnull"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("JSONs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), userList{}("*")] + symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONEntry"), terminals{}("010")] + symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONList"), terminals{}("101")] + symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONObject"), terminals{}("101")] + symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONnull"), terminals{}("1")] + symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONs"), terminals{}("010"), userList{}("*")] symbol LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cJUMPDEST%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1018,28,1018,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMPI'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cJUMPI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1033,27,1033,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cJUMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,26,1022,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -1051,17 +1051,17 @@ module VERIFICATION hooked-symbol LblKeccak256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cKeccak256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256"), klabel{}("Keccak256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblKeccak256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cKeccak256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256raw"), klabel{}("Keccak256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,22,48,104)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblLOG'LParUndsRParUnds'EVM'Unds'LogOp'Unds'Int{}(SortInt{}) : SortLogOp{} [constructor{}(), format{}("%cLOG%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("LOG"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1113,22,1113,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), klabel{}("LONDON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}("LONDON_EVM"), terminals{}("1")] symbol LblLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(926,27,926,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblLegacyProtectedTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}, SortInt{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyProtectedTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c,%r chainId: %7 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyProtectedTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,29,463,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101010101010101")] symbol LblLegacyTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,29,462,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("11010101010101")] symbol LblLegacy'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%cLegacy%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,23,442,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblList2Set'LParUndsRParUnds'COLLECTIONS'Unds'Set'Unds'List{}(SortList{}) : SortSet{} [format{}("%cList2Set%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.list2set"), klabel{}("List2Set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] symbol LblM3'Coln'2048'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%cM3:2048%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(698,20,698,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), klabel{}("MERGE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}("MERGE_EVM"), terminals{}("1")] symbol LblMLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cMLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(864,26,864,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMODEXP'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cMODEXP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1720,30,1720,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,67,890,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -1070,8 +1070,8 @@ module VERIFICATION symbol LblMSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(869,27,869,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMULMOD'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cMULMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(904,39,904,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMUL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,35,890,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] symbol LblMerkleBranch'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'Map'Unds'String{}(SortMap{}, SortString{}) : SortMerkleTree{} [constructor{}(), format{}("%cMerkleBranch%r %c(%r %1 %c,%r %2 %c)%r"), functional{}(), injective{}(), klabel{}("MerkleBranch"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(435,27,435,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblMerkleCheck'LParUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree{}(SortMerkleTree{}) : SortMerkleTree{} [format{}("%cMerkleCheck%r %c(%r %1 %c)%r"), function{}(), klabel{}("MerkleCheck"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(508,27,508,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblMerkleDelete'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree'Unds'Bytes{}(SortMerkleTree{}, SortBytes{}) : SortMerkleTree{} [format{}("%cMerkleDelete%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("MerkleDelete"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -1086,12 +1086,12 @@ module VERIFICATION hooked-symbol LblMessageCellMap'Coln'in'Unds'keys{}(SortMsgIDCell{}, SortMessageCellMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), priorities{}(), right{}(), terminals{}("01101"), total{}()] hooked-symbol LblMessageCellMapItem{}(SortMsgIDCell{}, SortMessageCell{}) : SortMessageCellMap{} [format{}("%2"), function{}(), hook{}("MAP.element"), left{}(), priorities{}(), right{}(), terminals{}("110101")] symbol LblMessageCellMapKey{}(SortMessageCell{}) : SortMsgIDCell{} [format{}("%cMessageCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), klabel{}("NORMAL"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("NORMAL"), terminals{}("1")] symbol LblNOT'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cNOT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,37,885,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblNUMBER'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cNUMBER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,55,956,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblORIGIN'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cORIGIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(964,40,964,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPC'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPC%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,28,948,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), klabel{}("PETERSBURG_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}("PETERSBURG_EVM"), terminals{}("1")] symbol LblPOP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cPOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(840,26,840,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPREVRANDAO'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPREVRANDAO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,81,956,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPUSH'LParUndsRParUnds'EVM'Unds'PushOp'Unds'Int{}(SortInt{}) : SortPushOp{} [constructor{}(), format{}("%cPUSH%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("PUSH"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(850,23,850,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1117,23 +1117,23 @@ module VERIFICATION symbol LblSGT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSGT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,35,932,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA256'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cSHA256%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1702,30,1702,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA3'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHA3%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,27,937,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), klabel{}("SHANGHAI_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}("SHANGHAI_EVM"), terminals{}("1")] symbol LblSHL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,27,914,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,35,914,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSIGNEXTEND'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSIGNEXTEND%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,36,909,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cSLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,26,1186,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,27,932,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(899,36,899,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), klabel{}("SPURIOUS_DRAGON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}("SPURIOUS_DRAGON_EVM"), terminals{}("1")] symbol LblSSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1196,27,1196,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTATICCALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cSTATICCALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1446,26,1446,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTOP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cSTOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,28,1047,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSUB'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSUB%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,43,890,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSWAP'LParUndsRParUnds'EVM'Unds'StackOp'Unds'Int{}(SortInt{}) : SortStackOp{} [constructor{}(), format{}("%cSWAP%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("SWAP"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(844,38,844,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSet2List'LParUndsRParUnds'COLLECTIONS'Unds'List'Unds'Set{}(SortSet{}) : SortList{} [format{}("%cSet2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.set2list"), klabel{}("Set2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,19,1049,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] hooked-symbol LblSha256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256"), klabel{}("Sha256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,98)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cSha256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256raw"), klabel{}("Sha256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha3'Unds'256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha3_256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1152,28 +1152,28 @@ module VERIFICATION hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.string2int"), klabel{}("String2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,21,1810,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblString2JSON'LParUndsRParUnds'JSON'Unds'JSON'Unds'String{}(SortString{}) : SortJSON{} [format{}("%cString2JSON%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.string2json"), klabel{}("String2JSON"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,21,45,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblStringBuffer2String'LParUndsRParUnds'STRING-BUFFER-IN-K'Unds'String'Unds'StringBuffer{}(SortStringBuffer{}) : SortString{} [format{}("%cStringBuffer2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("StringBuffer2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1933,21,1933,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), klabel{}("TANGERINE_WHISTLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}("TANGERINE_WHISTLE_EVM"), terminals{}("1")] symbol LblTIMESTAMP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cTIMESTAMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,41,956,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblUNDEFINED'LParUndsRParUnds'EVM'Unds'InvalidOp'Unds'Int{}(SortInt{}) : SortInvalidOp{} [constructor{}(), format{}("%cUNDEFINED%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,38,829,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), klabel{}("VMTESTS"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("VMTESTS"), terminals{}("1")] symbol LblVat'Unds'bin'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cVat_bin%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6,22,6,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblVat'Unds'bin'Unds'runtime'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cVat_bin_runtime%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10,22,10,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblVow'Unds'bin'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cVow_bin%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblVow'Unds'bin'Unds'runtime'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cVow_bin_runtime%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblWordStack2List'LParUndsRParUnds'EVM-TYPES'Unds'List'Unds'WordStack{}(SortWordStack{}) : SortList{} [format{}("%cWordStack2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("WordStack2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,21,311,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblXOR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cXOR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(920,45,920,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] symbol Lbl'UndsPerc'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,20,92,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPerc'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,20,121,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsAnd-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c&Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(165,20,165,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsLParUndsCommUndsRParUnds'SERIALIZATION'Unds'LengthPrefix'Unds'LengthPrefixType'Unds'Int'Unds'Int{}(SortLengthPrefixType{}, SortInt{}, SortInt{}) : SortLengthPrefix{} [constructor{}(), format{}("%1 %c(%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(402,29,402,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("010101")] symbol Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c*Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,20,17,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsStar'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c*Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,20,89,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [format{}("%1 %c+Bytes%r %2"), function{}(), functional{}(), hook{}("BYTES.concat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2150,20,2150,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c+Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,20,20,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'JSONs'UndsUnds'JSON-EXT'Unds'JSONs'Unds'JSONs'Unds'JSONs{}(SortJSONs{}, SortJSONs{}) : SortJSONs{} [format{}("%1 %c+JSONs%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/json-rpc.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}(SortStringBuffer{}, SortString{}) : SortStringBuffer{} [avoid{}(), format{}("%1 %c+String%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1931,27,1931,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [format{}("%1 %c+String%r %2"), function{}(), functional{}(), hook{}("STRING.concat"), latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1701,21,1701,135)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] @@ -1181,64 +1181,64 @@ module VERIFICATION symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs{}(SortEventArg{}, SortEventArgs{}) : SortEventArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("eventArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs{}(SortTypedArg{}, SortTypedArgs{}) : SortTypedArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("typedArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c-Gas%r %2"), function{}(), functional{}(), left{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,20,21,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds'-Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c/Gas%r %2"), function{}(), left{}(Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,20,18,45)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_/Int_"), terminals{}("010")] symbol Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,20,91,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,20,120,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c:%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,22,236,46)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortWordStack{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,26,231,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("_WS_"), terminals{}("010")] symbol Lbl'Unds-LT--LT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<>%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,21,23,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] symbol Lbl'Unds-LT-Eqls'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c<=Gas%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,21,24,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), klabel{}("_<=Int_"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}("_<=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [format{}("%1 %c<=Map%r %2"), function{}(), functional{}(), hook{}("MAP.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [format{}("%1 %c<=Set%r %2"), function{}(), functional{}(), hook{}("SET.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(786,19,786,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c<=String%r %2"), function{}(), functional{}(), hook{}("STRING.le"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1846,19,1846,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(136,20,136,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,20,40,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), klabel{}("_=/=Bool_"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), klabel{}("_=/=Int_"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), klabel{}("_=/=K_"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c=/=String%r %2"), function{}(), functional{}(), hook{}("STRING.ne"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1842,19,1842,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), klabel{}("_==Bool_"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), klabel{}("_==Int_"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), klabel{}("_==K_"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c==String%r %2"), function{}(), functional{}(), hook{}("STRING.eq"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1841,19,1841,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsEqlsEqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c==Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(138,20,138,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>=String%r %2"), function{}(), functional{}(), hook{}("STRING.ge"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1848,19,1848,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,20,137,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Byte%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(584,20,584,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] symbol Lbl'Unds-GT--GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,20,168,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>sWord%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(169,20,169,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>String%r %2"), function{}(), functional{}(), hook{}("STRING.gt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1847,19,1847,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(135,20,135,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'AccountCellMap'Unds'{}(SortAccountCellMap{}, SortAccountCellMap{}) : SortAccountCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblAccountCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'AccountCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] hooked-symbol Lbl'Unds'MessageCellMap'Unds'{}(SortMessageCellMap{}, SortMessageCellMap{}) : SortMessageCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblMessageCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'MessageCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortBytes{}, SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), klabel{}("mapWriteRange"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,22,324,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'WordStack'Unds'WordStack'Unds'Int'Unds'Int{}(SortWordStack{}, SortInt{}, SortInt{}) : SortWordStack{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,26,271,74)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("BYTES.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2076,20,2076,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("BYTES.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2085,18,2085,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101")] symbol Lbl'UndsLSqBUndsRSqBUnds'EVM-TYPES'Unds'Int'Unds'WordStack'Unds'Int{}(SortWordStack{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(265,20,265,59)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] symbol Lbl'UndsXor-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Word%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,20,108,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'StackOp'Unds'WordStack{}(SortStackOp{}, SortWordStack{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(454,27,454,44)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int{}(SortUnStackOp{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,27,440,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] @@ -1248,138 +1248,138 @@ module VERIFICATION symbol Lbl'UndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'QuadStackOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortQuadStackOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallSixOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallSixOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,27,462,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("0000000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7 %8"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,27,463,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000000")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds'in'UndsUnds'EVM-TYPES'Unds'Bool'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,21,290,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds's'-LT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cs%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPipe'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c|Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,20,164,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), klabel{}("abi_selector"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_address"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_array"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes1"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes10"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes11"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes12"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes13"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes14"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes15"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes17"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes18"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes19"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes2"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes20"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes21"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes22"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes23"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes25"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes26"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes27"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes28"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes29"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes30"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes31"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes4"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes5"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes6"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes7"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes9"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_string"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_selector"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_address"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_array"), terminals{}("11010101")] + symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bool"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes1"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes10"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes11"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes12"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes13"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes14"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes15"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes17"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes18"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes19"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes2"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes20"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes21"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes22"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes23"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes25"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes26"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes27"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes28"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes29"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes3"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes30"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes31"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes4"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes5"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes6"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes7"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes9"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int96"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_string"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint96"), terminals{}("1101")] symbol Lblabs'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabs%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("abs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,20,46,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] - symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("accountEmpty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101"), total{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), klabel{}("bigEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), klabel{}("binRuntime"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}("accountEmpty"), terminals{}("11010101"), total{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("bigEndianBytes"), terminals{}("1")] + symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("binRuntime"), terminals{}("1101")] symbol Lblbit'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("bit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(187,20,187,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("blockHeaderHash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("blockHeaderHashBaseFee"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("blockHeaderHashWithdrawals"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHash"), terminals{}("11010101010101010101010101010101")] + symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashBaseFee"), terminals{}("1101010101010101010101010101010101")] + symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashWithdrawals"), terminals{}("110101010101010101010101010101010101")] symbol Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool{}(SortBool{}) : SortInt{} [format{}("%cbool2Word%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("bool2Word"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("bool2Word"), terminals{}("1101"), total{}()] symbol Lblbyte'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbyte%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("byte"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(188,20,188,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblcategoryChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%ccategoryChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.category"), klabel{}("categoryChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1858,21,1858,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1387,10 +1387,10 @@ module VERIFICATION hooked-symbol Lblchoice'LParUndsRParUnds'SET'Unds'KItem'Unds'Set{}(SortSet{}) : SortKItem{} [format{}("%cchoice%r %c(%r %1 %c)%r"), function{}(), hook{}("SET.choice"), klabel{}("Set:choice"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(804,20,804,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblchop'LParUndsRParUnds'WORD'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cchop%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("chop"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(575,20,575,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), smtlib{}("chop"), terminals{}("1101"), total{}()] hooked-symbol LblchrChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cchrChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.chr"), klabel{}("chrChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1718,21,1718,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), klabel{}("contract_access_field"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("contract_access_hash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101")] - symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), klabel{}("contract_access_index"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), klabel{}("contract_access_loc"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_field"), terminals{}("010")] + symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_hash"), terminals{}("110101")] + symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_index"), terminals{}("0101")] + symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_loc"), terminals{}("1101")] hooked-symbol LblcountAllOccurrences'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortInt{} [format{}("%ccountAllOccurrences%r %c(... %r haystack: %1 %c,%r needle: %2 %c)%r"), function{}(), functional{}(), hook{}("STRING.countAllOccurrences"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1831,18,1831,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol LbldecodeBytes'LParUndsCommUndsRParUnds'BYTES-STRING-ENCODE'Unds'String'Unds'String'Unds'Bytes{}(SortString{}, SortBytes{}) : SortString{} [format{}("%cdecodeBytes%r %c(... %r encoding: %1 %c,%r contents: %2 %c)%r"), function{}(), hook{}("BYTES.decodeBytes"), klabel{}("decodeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1986,23,1986,109)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LbldirectionalityChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cdirectionalityChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.directionality"), klabel{}("directionalityChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1859,21,1859,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1404,7 +1404,7 @@ module VERIFICATION symbol LblgetBloomFilterBit'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%cgetBloomFilterBit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("getBloomFilterBit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,20,706,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblgetExitCode{}(SortGeneratedTopCell{}) : SortInt{} [format{}("%cgetExitCode%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] symbol LblgetGeneratedCounterCell{}(SortGeneratedTopCell{}) : SortGeneratedCounterCell{} [format{}("%cgetGeneratedCounterCell%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] - symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("infGas"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}("infGas"), terminals{}("1101")] symbol LblinitAccessedAccountsCell{}() : SortAccessedAccountsCell{} [format{}("%cinitAccessedAccountsCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccessedStorageCell{}() : SortAccessedStorageCell{} [format{}("%cinitAccessedStorageCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccountCell{}() : SortAccountCellMap{} [format{}("%cinitAccountCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1415,7 +1415,7 @@ module VERIFICATION symbol LblinitBlockCell{}() : SortBlockCell{} [format{}("%cinitBlockCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockNonceCell{}() : SortBlockNonceCell{} [format{}("%cinitBlockNonceCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockhashesCell{}() : SortBlockhashesCell{} [format{}("%cinitBlockhashesCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), klabel{}("initBytecode"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("initBytecode"), terminals{}("1101")] symbol LblinitCallDataCell{}() : SortCallDataCell{} [format{}("%cinitCallDataCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallDepthCell{}() : SortCallDepthCell{} [format{}("%cinitCallDepthCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallGasCell{}() : SortCallGasCell{} [format{}("%cinitCallGasCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1754,7 +1754,7 @@ module VERIFICATION hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("BYTES.length"), klabel{}("lengthBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2140,18,2140,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), total{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%clengthString%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.length"), klabel{}("lengthString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1709,18,1709,80)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LbllistAsBytes'LParUndsRParUnds'EVM'Unds'List'Unds'List{}(SortList{}) : SortList{} [format{}("%clistAsBytes%r %c(%r %1 %c)%r"), function{}(), klabel{}("listAsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,21,687,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), klabel{}("littleEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("littleEndianBytes"), terminals{}("1")] symbol Lbllog256Int'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog256Int%r %c(%r %1 %c)%r"), function{}(), klabel{}("log256Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,20,79,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol Lbllog2Int'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.log2"), klabel{}("log2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1280,18,1280,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblmakeList'LParUndsCommUndsRParUnds'LIST'Unds'List'Unds'Int'Unds'KItem{}(SortInt{}, SortKItem{}) : SortList{} [format{}("%cmakeList%r %c(... %r length: %1 %c,%r value: %2 %c)%r"), function{}(), hook{}("LIST.make"), klabel{}("makeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(974,19,974,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -2018,7 +2018,7 @@ module VERIFICATION symbol LblnoValueCell{}() : SortValueCellOpt{} [cellOptAbsent{}("ValueCell"), constructor{}(), format{}("%cnoValueCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWithdrawalsRootCell{}() : SortWithdrawalsRootCellOpt{} [cellOptAbsent{}("WithdrawalsRootCell"), constructor{}(), format{}("%cnoWithdrawalsRootCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWordStackCell{}() : SortWordStackCellOpt{} [cellOptAbsent{}("WordStackCell"), constructor{}(), format{}("%cnoWordStackCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] symbol LblnotMaxUInt128'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt128%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,20,440,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt160'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt160%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,20,441,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt16'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt16%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(436,20,436,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -2365,7 +2365,7 @@ module VERIFICATION symbol LblsetBloomFilterBits'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%csetBloomFilterBits%r %c(%r %1 %c)%r"), function{}(), klabel{}("setBloomFilterBits"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(702,20,702,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblsgn'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%csgn%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("sgn"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,20,45,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.signExtendBitRange"), klabel{}("signExtendBitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1295,18,1295,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), klabel{}("signedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("signedBytes"), terminals{}("1")] symbol Lblsignextend'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%csignextend%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("signextend"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(211,20,211,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.size"), klabel{}("sizeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1020,18,1020,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("MAP.size"), klabel{}("sizeMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(373,18,373,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -2374,14 +2374,14 @@ module VERIFICATION hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.srand"), impure{}(), klabel{}("srandInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1329,16,1329,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblsubstrBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%csubstrBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("BYTES.substr"), klabel{}("substrBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2097,20,2097,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblsubstrString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'String'Unds'Int'Unds'Int{}(SortString{}, SortInt{}, SortInt{}) : SortString{} [format{}("%csubstrString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("STRING.substr"), klabel{}("substrString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1734,21,1734,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), klabel{}("unsignedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("unsignedBytes"), terminals{}("1")] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblword2Bool'LParUndsRParUnds'EVM-TYPES'Unds'Bool'Unds'Int{}(SortInt{}) : SortBool{} [format{}("%cword2Bool%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("word2Bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,21,35,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes{}(SortInt{}, SortList{}, SortBytes{}) : SortSubstateLogEntry{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), functional{}(), injective{}(), klabel{}("logEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(431,33,431,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1010101")] symbol Lbl'LBraUndsPipeUndsRBraUnds'EVM'Unds'Accounts'Unds'AccountsCellFragment'Unds'SubstateCellFragment{}(SortAccountsCellFragment{}, SortSubstateCellFragment{}) : SortAccounts{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("10101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] symbol Lbl'Tild'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%c~Word%r %1"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(163,20,163,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("10"), total{}()] // generated axioms diff --git a/test/regression-evm/test-flipper-addu48u48-fail-rough-definition.kore b/test/regression-evm/test-flipper-addu48u48-fail-rough-definition.kore index f5c074eefd..c3fdd93811 100644 --- a/test/regression-evm/test-flipper-addu48u48-fail-rough-definition.kore +++ b/test/regression-evm/test-flipper-addu48u48-fail-rough-definition.kore @@ -493,9 +493,9 @@ module VERIFICATION symbol Lbl'Hash'asInteger'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asInteger%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asInteger"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,20,349,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'Hash'asWord'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asWord%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asWord"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(345,20,345,71)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("asWord"), terminals{}("1101"), total{}()] symbol Lbl'Hash'asmTxPrefix'LParUndsRParUnds'EVM-TYPES'Unds'TxType'Unds'Int{}(SortInt{}) : SortTxType{} [format{}("%c#asmTxPrefix%r %c(%r %1 %c)%r"), function{}(), klabel{}("#asmTxPrefix"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(453,23,453,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("#blockHashHeaderBaseFeeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("#blockHashHeaderBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("#blockHashHeaderWithdrawalsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBaseFeeBytes"), terminals{}("1101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBytes"), terminals{}("11010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderWithdrawalsBytes"), terminals{}("110101010101010101010101010101010101")] symbol Lbl'Hash'blockhash'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'List'Unds'Int'Unds'Int'Unds'Int{}(SortList{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockhash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), klabel{}("#blockhash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,20,1001,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101010101")] symbol Lbl'Hash'bloomFilter'LParUndsRParUnds'EVM'Unds'Bytes'Unds'List{}(SortList{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c)%r"), function{}(), klabel{}("#bloomFilter"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(679,22,679,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lbl'Hash'bloomFilter'LParUndsCommUndsRParUnds'EVM'Unds'Bytes'Unds'List'Unds'Int{}(SortList{}, SortInt{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("#bloomFilterAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(680,22,680,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -723,16 +723,16 @@ module VERIFICATION hooked-symbol Lbl'Stop'AccountCellMap{}() : SortAccountCellMap{} [format{}("%c.AccountCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'Account'Unds'EVM-TYPES'Unds'Account{}() : SortAccount{} [constructor{}(), format{}("%c.Account%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(387,24,387,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [format{}("%c.Bytes%r"), function{}(), functional{}(), hook{}("BYTES.empty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2003,20,2003,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), klabel{}(".List{\"JSONs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), userList{}("*")] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".List{\"JSONs\"}"), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs'QuotRBraUnds'EventArgs{}() : SortEventArgs{} [constructor{}(), format{}("%c.EventArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"eventArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs'QuotRBraUnds'TypedArgs{}() : SortTypedArgs{} [constructor{}(), format{}("%c.TypedArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"typedArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'HASHED-LOCATIONS'Unds'IntList'Unds'Int'Unds'IntList'QuotRBraUnds'IntList{}() : SortIntList{} [constructor{}(), format{}("%c.IntList%r"), functional{}(), injective{}(), klabel{}(".List{\"intList\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,24,66,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), smtlib{}("intList"), terminals{}("1"), userList{}("*")] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] symbol Lbl'Stop'MerkleTree'Unds'SERIALIZATION'Unds'MerkleTree{}() : SortMerkleTree{} [constructor{}(), format{}("%c.MerkleTree%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(434,27,434,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'MessageCellMap{}() : SortMessageCellMap{} [format{}("%c.MessageCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'NoOpCode'Unds'EVM'Unds'MaybeOpCode{}() : SortMaybeOpCode{} [constructor{}(), format{}("%c.NoOpCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(280,28,280,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'Stop'StatusCode'Unds'NETWORK'Unds'StatusCode{}() : SortStatusCode{} [constructor{}(), format{}("%c.StatusCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/network.md)"), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'StringBuffer'Unds'STRING-BUFFER-IN-K'Unds'StringBuffer{}() : SortStringBuffer{} [format{}("%c.StringBuffer%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1930,27,1930,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] symbol Lbl'Stop'TxType'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%c.TxType%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,23,441,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -846,14 +846,14 @@ module VERIFICATION symbol LblAccountCellMapKey{}(SortAccountCell{}) : SortAcctIDCell{} [format{}("%cAccountCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblBALANCE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBALANCE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1131,26,1131,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBASEFEE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cBASEFEE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,69,948,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), klabel{}("BERLIN_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}("BERLIN_EVM"), terminals{}("1")] symbol LblBLAKE2F'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cBLAKE2F%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,30,1788,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBLOCKHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBLOCKHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(990,26,990,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblBN128Add'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'G1Point{}(SortG1Point{}, SortG1Point{}) : SortG1Point{} [format{}("%cBN128Add%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128add"), klabel{}("BN128Add"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,24,103,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128AtePairing'LParUndsCommUndsRParUnds'KRYPTO'Unds'Bool'Unds'List'Unds'List{}(SortList{}, SortList{}) : SortBool{} [format{}("%cBN128AtePairing%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128ate"), klabel{}("BN128AtePairing"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,21,107,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128Mul'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'Int{}(SortG1Point{}, SortInt{}) : SortG1Point{} [format{}("%cBN128Mul%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128mul"), klabel{}("BN128Mul"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblBYTE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cBYTE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,27,909,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), klabel{}("BYZANTIUM_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}("BYZANTIUM_EVM"), terminals{}("1")] hooked-symbol LblBase2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortString{} [format{}("%cBase2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.base2string"), klabel{}("Base2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,21,1812,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBlake2Compress'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cBlake2Compress%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.blake2compress"), klabel{}("Blake2Compress"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,106)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblBool2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Bool{}(SortBool{}) : SortString{} [format{}("%cBool2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("Bool2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1762,21,1762,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -870,7 +870,7 @@ module VERIFICATION symbol LblCODECOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,28,984,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCODESIZE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(979,38,979,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCOINBASE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCOINBASE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,28,956,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), klabel{}("CONSTANTINOPLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}("CONSTANTINOPLE_EVM"), terminals{}("1")] symbol LblCREATE2'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cCREATE2%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1599,28,1599,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCREATE'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCREATE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1572,28,1572,36)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCaddraccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCaddraccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Caddraccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Caddraccess"), terminals{}("110101"), total{}()] @@ -894,7 +894,7 @@ module VERIFICATION symbol LblCsstore'LParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int'Unds'Int'Unds'Int{}(SortSchedule{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cCsstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), functional{}(), klabel{}("Csstore"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,20,107,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Csstore"), terminals{}("1101010101"), total{}()] symbol LblCstorageaccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCstorageaccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cstorageaccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cstorageaccess"), terminals{}("110101"), total{}()] symbol LblCxfer'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int{}(SortSchedule{}, SortInt{}) : SortInt{} [format{}("%cCxfer%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cxfer"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,20,111,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cxfer"), terminals{}("110101"), total{}()] - symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), klabel{}("DEFAULT_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}("DEFAULT_EVM"), terminals{}("1")] symbol LblDELEGATECALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cDELEGATECALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1432,26,1432,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIFFICULTY'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cDIFFICULTY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,66,956,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIV'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cDIV%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,51,890,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -942,7 +942,7 @@ module VERIFICATION symbol LblEXTCODESIZE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1142,26,1142,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEnd'Unds'bin'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cEnd_bin%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,22,102,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEnd'Unds'bin'Unds'runtime'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cEnd_bin_runtime%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,22,106,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), klabel{}("FRONTIER_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}("FRONTIER_EVM"), terminals{}("1")] symbol LblFlapper'Unds'bin'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cFlapper_bin%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,22,86,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblFlapper'Unds'bin'Unds'runtime'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cFlapper_bin_runtime%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,22,90,51)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblFlipper'Unds'bin'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cFlipper_bin%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,22,70,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] @@ -1028,21 +1028,21 @@ module VERIFICATION symbol LblGwarmstorageread'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGwarmstorageread%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,129,49,147)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzero'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGzero%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,30,43,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzerovaluenewaccountgas'Unds'SCHEDULE'Unds'ScheduleFlag{}() : SortScheduleFlag{} [constructor{}(), format{}("%cGzerovaluenewaccountgas%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,102,26,127)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), klabel{}("HOMESTEAD_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}("HOMESTEAD_EVM"), terminals{}("1")] symbol LblHPEncodeAux'LParUndsRParUnds'SERIALIZATION'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cHPEncodeAux%r %c(%r %1 %c)%r"), function{}(), klabel{}("HPEncodeAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(564,20,564,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblID'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1714,30,1714,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblINVALID'Unds'EVM'Unds'InvalidOp{}() : SortInvalidOp{} [constructor{}(), format{}("%cINVALID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,26,829,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), klabel{}("ISTANBUL_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}("ISTANBUL_EVM"), terminals{}("1")] symbol LblISZERO'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cISZERO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,26,885,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Endianness'Unds'Signedness{}(SortInt{}, SortEndianness{}, SortSignedness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("Int2BytesNoLen"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2054,20,2054,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("BYTES.int2bytes"), klabel{}("Int2Bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2053,20,2053,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.int2string"), klabel{}("Int2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1811,21,1811,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblJSON2String'LParUndsRParUnds'JSON'Unds'String'Unds'JSON{}(SortJSON{}) : SortString{} [format{}("%cJSON2String%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.json2string"), klabel{}("JSON2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,23,43,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), klabel{}("JSONEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), klabel{}("JSONList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), klabel{}("JSONObject"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), klabel{}("JSONnull"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("JSONs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), userList{}("*")] + symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONEntry"), terminals{}("010")] + symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONList"), terminals{}("101")] + symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONObject"), terminals{}("101")] + symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONnull"), terminals{}("1")] + symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONs"), terminals{}("010"), userList{}("*")] symbol LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cJUMPDEST%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1018,28,1018,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMPI'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cJUMPI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1033,27,1033,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cJUMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,26,1022,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -1051,17 +1051,17 @@ module VERIFICATION hooked-symbol LblKeccak256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cKeccak256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256"), klabel{}("Keccak256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblKeccak256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cKeccak256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256raw"), klabel{}("Keccak256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,22,48,104)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblLOG'LParUndsRParUnds'EVM'Unds'LogOp'Unds'Int{}(SortInt{}) : SortLogOp{} [constructor{}(), format{}("%cLOG%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("LOG"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1113,22,1113,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), klabel{}("LONDON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}("LONDON_EVM"), terminals{}("1")] symbol LblLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(926,27,926,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblLegacyProtectedTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}, SortInt{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyProtectedTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c,%r chainId: %7 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyProtectedTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,29,463,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101010101010101")] symbol LblLegacyTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,29,462,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("11010101010101")] symbol LblLegacy'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%cLegacy%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,23,442,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblList2Set'LParUndsRParUnds'COLLECTIONS'Unds'Set'Unds'List{}(SortList{}) : SortSet{} [format{}("%cList2Set%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.list2set"), klabel{}("List2Set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] symbol LblM3'Coln'2048'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%cM3:2048%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(698,20,698,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), klabel{}("MERGE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}("MERGE_EVM"), terminals{}("1")] symbol LblMLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cMLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(864,26,864,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMODEXP'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cMODEXP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1720,30,1720,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,67,890,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -1070,8 +1070,8 @@ module VERIFICATION symbol LblMSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(869,27,869,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMULMOD'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cMULMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(904,39,904,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMUL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,35,890,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] symbol LblMerkleBranch'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'Map'Unds'String{}(SortMap{}, SortString{}) : SortMerkleTree{} [constructor{}(), format{}("%cMerkleBranch%r %c(%r %1 %c,%r %2 %c)%r"), functional{}(), injective{}(), klabel{}("MerkleBranch"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(435,27,435,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblMerkleCheck'LParUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree{}(SortMerkleTree{}) : SortMerkleTree{} [format{}("%cMerkleCheck%r %c(%r %1 %c)%r"), function{}(), klabel{}("MerkleCheck"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(508,27,508,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblMerkleDelete'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree'Unds'Bytes{}(SortMerkleTree{}, SortBytes{}) : SortMerkleTree{} [format{}("%cMerkleDelete%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("MerkleDelete"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -1086,12 +1086,12 @@ module VERIFICATION hooked-symbol LblMessageCellMap'Coln'in'Unds'keys{}(SortMsgIDCell{}, SortMessageCellMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), priorities{}(), right{}(), terminals{}("01101"), total{}()] hooked-symbol LblMessageCellMapItem{}(SortMsgIDCell{}, SortMessageCell{}) : SortMessageCellMap{} [format{}("%2"), function{}(), hook{}("MAP.element"), left{}(), priorities{}(), right{}(), terminals{}("110101")] symbol LblMessageCellMapKey{}(SortMessageCell{}) : SortMsgIDCell{} [format{}("%cMessageCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), klabel{}("NORMAL"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("NORMAL"), terminals{}("1")] symbol LblNOT'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cNOT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,37,885,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblNUMBER'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cNUMBER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,55,956,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblORIGIN'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cORIGIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(964,40,964,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPC'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPC%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,28,948,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), klabel{}("PETERSBURG_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}("PETERSBURG_EVM"), terminals{}("1")] symbol LblPOP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cPOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(840,26,840,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPREVRANDAO'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPREVRANDAO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,81,956,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPUSH'LParUndsRParUnds'EVM'Unds'PushOp'Unds'Int{}(SortInt{}) : SortPushOp{} [constructor{}(), format{}("%cPUSH%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("PUSH"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(850,23,850,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1117,23 +1117,23 @@ module VERIFICATION symbol LblSGT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSGT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,35,932,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA256'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cSHA256%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1702,30,1702,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA3'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHA3%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,27,937,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), klabel{}("SHANGHAI_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}("SHANGHAI_EVM"), terminals{}("1")] symbol LblSHL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,27,914,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,35,914,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSIGNEXTEND'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSIGNEXTEND%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,36,909,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cSLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,26,1186,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,27,932,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(899,36,899,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), klabel{}("SPURIOUS_DRAGON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}("SPURIOUS_DRAGON_EVM"), terminals{}("1")] symbol LblSSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1196,27,1196,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTATICCALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cSTATICCALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1446,26,1446,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTOP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cSTOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,28,1047,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSUB'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSUB%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,43,890,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSWAP'LParUndsRParUnds'EVM'Unds'StackOp'Unds'Int{}(SortInt{}) : SortStackOp{} [constructor{}(), format{}("%cSWAP%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("SWAP"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(844,38,844,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSet2List'LParUndsRParUnds'COLLECTIONS'Unds'List'Unds'Set{}(SortSet{}) : SortList{} [format{}("%cSet2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.set2list"), klabel{}("Set2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,19,1049,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] hooked-symbol LblSha256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256"), klabel{}("Sha256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,98)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cSha256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256raw"), klabel{}("Sha256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha3'Unds'256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha3_256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1152,28 +1152,28 @@ module VERIFICATION hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.string2int"), klabel{}("String2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,21,1810,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblString2JSON'LParUndsRParUnds'JSON'Unds'JSON'Unds'String{}(SortString{}) : SortJSON{} [format{}("%cString2JSON%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.string2json"), klabel{}("String2JSON"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,21,45,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblStringBuffer2String'LParUndsRParUnds'STRING-BUFFER-IN-K'Unds'String'Unds'StringBuffer{}(SortStringBuffer{}) : SortString{} [format{}("%cStringBuffer2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("StringBuffer2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1933,21,1933,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), klabel{}("TANGERINE_WHISTLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}("TANGERINE_WHISTLE_EVM"), terminals{}("1")] symbol LblTIMESTAMP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cTIMESTAMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,41,956,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblUNDEFINED'LParUndsRParUnds'EVM'Unds'InvalidOp'Unds'Int{}(SortInt{}) : SortInvalidOp{} [constructor{}(), format{}("%cUNDEFINED%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,38,829,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), klabel{}("VMTESTS"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("VMTESTS"), terminals{}("1")] symbol LblVat'Unds'bin'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cVat_bin%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6,22,6,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblVat'Unds'bin'Unds'runtime'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cVat_bin_runtime%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10,22,10,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblVow'Unds'bin'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cVow_bin%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblVow'Unds'bin'Unds'runtime'Unds'DSS-BIN-RUNTIME'Unds'Bytes{}() : SortBytes{} [format{}("%cVow_bin_runtime%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/mcd/bin_runtime.k)"), priorities{}(), right{}(), terminals{}("1")] symbol LblWordStack2List'LParUndsRParUnds'EVM-TYPES'Unds'List'Unds'WordStack{}(SortWordStack{}) : SortList{} [format{}("%cWordStack2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("WordStack2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,21,311,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblXOR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cXOR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(920,45,920,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] symbol Lbl'UndsPerc'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,20,92,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPerc'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,20,121,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsAnd-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c&Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(165,20,165,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsLParUndsCommUndsRParUnds'SERIALIZATION'Unds'LengthPrefix'Unds'LengthPrefixType'Unds'Int'Unds'Int{}(SortLengthPrefixType{}, SortInt{}, SortInt{}) : SortLengthPrefix{} [constructor{}(), format{}("%1 %c(%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(402,29,402,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("010101")] symbol Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c*Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,20,17,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsStar'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c*Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,20,89,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [format{}("%1 %c+Bytes%r %2"), function{}(), functional{}(), hook{}("BYTES.concat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2150,20,2150,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c+Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,20,20,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'JSONs'UndsUnds'JSON-EXT'Unds'JSONs'Unds'JSONs'Unds'JSONs{}(SortJSONs{}, SortJSONs{}) : SortJSONs{} [format{}("%1 %c+JSONs%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/json-rpc.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}(SortStringBuffer{}, SortString{}) : SortStringBuffer{} [avoid{}(), format{}("%1 %c+String%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1931,27,1931,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [format{}("%1 %c+String%r %2"), function{}(), functional{}(), hook{}("STRING.concat"), latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1701,21,1701,135)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] @@ -1181,64 +1181,64 @@ module VERIFICATION symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs{}(SortEventArg{}, SortEventArgs{}) : SortEventArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("eventArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs{}(SortTypedArg{}, SortTypedArgs{}) : SortTypedArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("typedArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c-Gas%r %2"), function{}(), functional{}(), left{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,20,21,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds'-Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c/Gas%r %2"), function{}(), left{}(Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,20,18,45)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_/Int_"), terminals{}("010")] symbol Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,20,91,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,20,120,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c:%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,22,236,46)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortWordStack{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,26,231,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("_WS_"), terminals{}("010")] symbol Lbl'Unds-LT--LT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<>%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,21,23,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] symbol Lbl'Unds-LT-Eqls'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c<=Gas%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,21,24,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), klabel{}("_<=Int_"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}("_<=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [format{}("%1 %c<=Map%r %2"), function{}(), functional{}(), hook{}("MAP.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [format{}("%1 %c<=Set%r %2"), function{}(), functional{}(), hook{}("SET.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(786,19,786,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c<=String%r %2"), function{}(), functional{}(), hook{}("STRING.le"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1846,19,1846,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(136,20,136,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,20,40,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), klabel{}("_=/=Bool_"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), klabel{}("_=/=Int_"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), klabel{}("_=/=K_"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c=/=String%r %2"), function{}(), functional{}(), hook{}("STRING.ne"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1842,19,1842,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), klabel{}("_==Bool_"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), klabel{}("_==Int_"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), klabel{}("_==K_"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c==String%r %2"), function{}(), functional{}(), hook{}("STRING.eq"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1841,19,1841,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsEqlsEqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c==Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(138,20,138,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>=String%r %2"), function{}(), functional{}(), hook{}("STRING.ge"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1848,19,1848,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,20,137,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Byte%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(584,20,584,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] symbol Lbl'Unds-GT--GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,20,168,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>sWord%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(169,20,169,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>String%r %2"), function{}(), functional{}(), hook{}("STRING.gt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1847,19,1847,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(135,20,135,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'AccountCellMap'Unds'{}(SortAccountCellMap{}, SortAccountCellMap{}) : SortAccountCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblAccountCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'AccountCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] hooked-symbol Lbl'Unds'MessageCellMap'Unds'{}(SortMessageCellMap{}, SortMessageCellMap{}) : SortMessageCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblMessageCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'MessageCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortBytes{}, SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), klabel{}("mapWriteRange"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,22,324,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'WordStack'Unds'WordStack'Unds'Int'Unds'Int{}(SortWordStack{}, SortInt{}, SortInt{}) : SortWordStack{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,26,271,74)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("BYTES.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2076,20,2076,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("BYTES.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2085,18,2085,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101")] symbol Lbl'UndsLSqBUndsRSqBUnds'EVM-TYPES'Unds'Int'Unds'WordStack'Unds'Int{}(SortWordStack{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(265,20,265,59)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] symbol Lbl'UndsXor-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Word%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,20,108,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'StackOp'Unds'WordStack{}(SortStackOp{}, SortWordStack{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(454,27,454,44)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int{}(SortUnStackOp{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,27,440,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] @@ -1248,138 +1248,138 @@ module VERIFICATION symbol Lbl'UndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'QuadStackOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortQuadStackOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallSixOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallSixOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,27,462,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("0000000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7 %8"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,27,463,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000000")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds'in'UndsUnds'EVM-TYPES'Unds'Bool'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,21,290,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds's'-LT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cs%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPipe'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c|Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,20,164,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), klabel{}("abi_selector"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_address"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_array"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes1"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes10"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes11"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes12"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes13"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes14"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes15"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes17"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes18"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes19"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes2"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes20"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes21"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes22"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes23"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes25"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes26"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes27"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes28"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes29"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes30"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes31"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes4"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes5"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes6"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes7"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes9"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_string"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_selector"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_address"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_array"), terminals{}("11010101")] + symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bool"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes1"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes10"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes11"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes12"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes13"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes14"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes15"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes17"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes18"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes19"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes2"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes20"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes21"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes22"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes23"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes25"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes26"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes27"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes28"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes29"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes3"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes30"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes31"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes4"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes5"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes6"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes7"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes9"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int96"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_string"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint96"), terminals{}("1101")] symbol Lblabs'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabs%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("abs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,20,46,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] - symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("accountEmpty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101"), total{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), klabel{}("bigEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), klabel{}("binRuntime"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}("accountEmpty"), terminals{}("11010101"), total{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("bigEndianBytes"), terminals{}("1")] + symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("binRuntime"), terminals{}("1101")] symbol Lblbit'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("bit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(187,20,187,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("blockHeaderHash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("blockHeaderHashBaseFee"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("blockHeaderHashWithdrawals"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHash"), terminals{}("11010101010101010101010101010101")] + symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashBaseFee"), terminals{}("1101010101010101010101010101010101")] + symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashWithdrawals"), terminals{}("110101010101010101010101010101010101")] symbol Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool{}(SortBool{}) : SortInt{} [format{}("%cbool2Word%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("bool2Word"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("bool2Word"), terminals{}("1101"), total{}()] symbol Lblbyte'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbyte%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("byte"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(188,20,188,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblcategoryChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%ccategoryChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.category"), klabel{}("categoryChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1858,21,1858,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1387,10 +1387,10 @@ module VERIFICATION hooked-symbol Lblchoice'LParUndsRParUnds'SET'Unds'KItem'Unds'Set{}(SortSet{}) : SortKItem{} [format{}("%cchoice%r %c(%r %1 %c)%r"), function{}(), hook{}("SET.choice"), klabel{}("Set:choice"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(804,20,804,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblchop'LParUndsRParUnds'WORD'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cchop%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("chop"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(575,20,575,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), smtlib{}("chop"), terminals{}("1101"), total{}()] hooked-symbol LblchrChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cchrChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.chr"), klabel{}("chrChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1718,21,1718,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), klabel{}("contract_access_field"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("contract_access_hash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101")] - symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), klabel{}("contract_access_index"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), klabel{}("contract_access_loc"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_field"), terminals{}("010")] + symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_hash"), terminals{}("110101")] + symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_index"), terminals{}("0101")] + symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_loc"), terminals{}("1101")] hooked-symbol LblcountAllOccurrences'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortInt{} [format{}("%ccountAllOccurrences%r %c(... %r haystack: %1 %c,%r needle: %2 %c)%r"), function{}(), functional{}(), hook{}("STRING.countAllOccurrences"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1831,18,1831,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol LbldecodeBytes'LParUndsCommUndsRParUnds'BYTES-STRING-ENCODE'Unds'String'Unds'String'Unds'Bytes{}(SortString{}, SortBytes{}) : SortString{} [format{}("%cdecodeBytes%r %c(... %r encoding: %1 %c,%r contents: %2 %c)%r"), function{}(), hook{}("BYTES.decodeBytes"), klabel{}("decodeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1986,23,1986,109)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LbldirectionalityChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cdirectionalityChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.directionality"), klabel{}("directionalityChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1859,21,1859,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1404,7 +1404,7 @@ module VERIFICATION symbol LblgetBloomFilterBit'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%cgetBloomFilterBit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("getBloomFilterBit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,20,706,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblgetExitCode{}(SortGeneratedTopCell{}) : SortInt{} [format{}("%cgetExitCode%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] symbol LblgetGeneratedCounterCell{}(SortGeneratedTopCell{}) : SortGeneratedCounterCell{} [format{}("%cgetGeneratedCounterCell%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] - symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("infGas"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}("infGas"), terminals{}("1101")] symbol LblinitAccessedAccountsCell{}() : SortAccessedAccountsCell{} [format{}("%cinitAccessedAccountsCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccessedStorageCell{}() : SortAccessedStorageCell{} [format{}("%cinitAccessedStorageCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccountCell{}() : SortAccountCellMap{} [format{}("%cinitAccountCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1415,7 +1415,7 @@ module VERIFICATION symbol LblinitBlockCell{}() : SortBlockCell{} [format{}("%cinitBlockCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockNonceCell{}() : SortBlockNonceCell{} [format{}("%cinitBlockNonceCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockhashesCell{}() : SortBlockhashesCell{} [format{}("%cinitBlockhashesCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), klabel{}("initBytecode"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("initBytecode"), terminals{}("1101")] symbol LblinitCallDataCell{}() : SortCallDataCell{} [format{}("%cinitCallDataCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallDepthCell{}() : SortCallDepthCell{} [format{}("%cinitCallDepthCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallGasCell{}() : SortCallGasCell{} [format{}("%cinitCallGasCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1754,7 +1754,7 @@ module VERIFICATION hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("BYTES.length"), klabel{}("lengthBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2140,18,2140,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), total{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%clengthString%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.length"), klabel{}("lengthString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1709,18,1709,80)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LbllistAsBytes'LParUndsRParUnds'EVM'Unds'List'Unds'List{}(SortList{}) : SortList{} [format{}("%clistAsBytes%r %c(%r %1 %c)%r"), function{}(), klabel{}("listAsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,21,687,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), klabel{}("littleEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("littleEndianBytes"), terminals{}("1")] symbol Lbllog256Int'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog256Int%r %c(%r %1 %c)%r"), function{}(), klabel{}("log256Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,20,79,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol Lbllog2Int'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.log2"), klabel{}("log2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1280,18,1280,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblmakeList'LParUndsCommUndsRParUnds'LIST'Unds'List'Unds'Int'Unds'KItem{}(SortInt{}, SortKItem{}) : SortList{} [format{}("%cmakeList%r %c(... %r length: %1 %c,%r value: %2 %c)%r"), function{}(), hook{}("LIST.make"), klabel{}("makeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(974,19,974,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -2018,7 +2018,7 @@ module VERIFICATION symbol LblnoValueCell{}() : SortValueCellOpt{} [cellOptAbsent{}("ValueCell"), constructor{}(), format{}("%cnoValueCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWithdrawalsRootCell{}() : SortWithdrawalsRootCellOpt{} [cellOptAbsent{}("WithdrawalsRootCell"), constructor{}(), format{}("%cnoWithdrawalsRootCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWordStackCell{}() : SortWordStackCellOpt{} [cellOptAbsent{}("WordStackCell"), constructor{}(), format{}("%cnoWordStackCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] symbol LblnotMaxUInt128'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt128%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,20,440,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt160'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt160%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,20,441,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt16'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt16%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(436,20,436,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -2365,7 +2365,7 @@ module VERIFICATION symbol LblsetBloomFilterBits'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%csetBloomFilterBits%r %c(%r %1 %c)%r"), function{}(), klabel{}("setBloomFilterBits"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(702,20,702,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblsgn'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%csgn%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("sgn"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,20,45,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.signExtendBitRange"), klabel{}("signExtendBitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1295,18,1295,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), klabel{}("signedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("signedBytes"), terminals{}("1")] symbol Lblsignextend'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%csignextend%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("signextend"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(211,20,211,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.size"), klabel{}("sizeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1020,18,1020,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("MAP.size"), klabel{}("sizeMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(373,18,373,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -2374,14 +2374,14 @@ module VERIFICATION hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.srand"), impure{}(), klabel{}("srandInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1329,16,1329,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblsubstrBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%csubstrBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("BYTES.substr"), klabel{}("substrBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2097,20,2097,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblsubstrString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'String'Unds'Int'Unds'Int{}(SortString{}, SortInt{}, SortInt{}) : SortString{} [format{}("%csubstrString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("STRING.substr"), klabel{}("substrString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1734,21,1734,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), klabel{}("unsignedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("unsignedBytes"), terminals{}("1")] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblword2Bool'LParUndsRParUnds'EVM-TYPES'Unds'Bool'Unds'Int{}(SortInt{}) : SortBool{} [format{}("%cword2Bool%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("word2Bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,21,35,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes{}(SortInt{}, SortList{}, SortBytes{}) : SortSubstateLogEntry{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), functional{}(), injective{}(), klabel{}("logEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(431,33,431,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1010101")] symbol Lbl'LBraUndsPipeUndsRBraUnds'EVM'Unds'Accounts'Unds'AccountsCellFragment'Unds'SubstateCellFragment{}(SortAccountsCellFragment{}, SortSubstateCellFragment{}) : SortAccounts{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("10101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] symbol Lbl'Tild'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%c~Word%r %1"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(163,20,163,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("10"), total{}()] // generated axioms diff --git a/test/regression-evm/test-functional-definition.kore b/test/regression-evm/test-functional-definition.kore index d57cfcb3e5..156bed2d92 100644 --- a/test/regression-evm/test-functional-definition.kore +++ b/test/regression-evm/test-functional-definition.kore @@ -347,9 +347,9 @@ module FUNCTIONAL-SPEC-SYNTAX symbol Lbl'Hash'asInteger'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asInteger%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asInteger"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,20,349,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'Hash'asWord'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asWord%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asWord"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(345,20,345,71)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("asWord"), terminals{}("1101"), total{}()] symbol Lbl'Hash'asmTxPrefix'LParUndsRParUnds'EVM-TYPES'Unds'TxType'Unds'Int{}(SortInt{}) : SortTxType{} [format{}("%c#asmTxPrefix%r %c(%r %1 %c)%r"), function{}(), klabel{}("#asmTxPrefix"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(453,23,453,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("#blockHashHeaderBaseFeeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("#blockHashHeaderBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("#blockHashHeaderWithdrawalsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBaseFeeBytes"), terminals{}("1101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBytes"), terminals{}("11010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderWithdrawalsBytes"), terminals{}("110101010101010101010101010101010101")] symbol Lbl'Hash'blockhash'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'List'Unds'Int'Unds'Int'Unds'Int{}(SortList{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockhash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), klabel{}("#blockhash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,20,1001,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101010101")] symbol Lbl'Hash'bloomFilter'LParUndsRParUnds'EVM'Unds'Bytes'Unds'List{}(SortList{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c)%r"), function{}(), klabel{}("#bloomFilter"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(679,22,679,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lbl'Hash'bloomFilter'LParUndsCommUndsRParUnds'EVM'Unds'Bytes'Unds'List'Unds'Int{}(SortList{}, SortInt{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("#bloomFilterAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(680,22,680,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -575,16 +575,16 @@ module FUNCTIONAL-SPEC-SYNTAX hooked-symbol Lbl'Stop'AccountCellMap{}() : SortAccountCellMap{} [format{}("%c.AccountCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'Account'Unds'EVM-TYPES'Unds'Account{}() : SortAccount{} [constructor{}(), format{}("%c.Account%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(387,24,387,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [format{}("%c.Bytes%r"), function{}(), functional{}(), hook{}("BYTES.empty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2003,20,2003,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), klabel{}(".List{\"JSONs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), userList{}("*")] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".List{\"JSONs\"}"), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs'QuotRBraUnds'EventArgs{}() : SortEventArgs{} [constructor{}(), format{}("%c.EventArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"eventArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs'QuotRBraUnds'TypedArgs{}() : SortTypedArgs{} [constructor{}(), format{}("%c.TypedArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"typedArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'HASHED-LOCATIONS'Unds'IntList'Unds'Int'Unds'IntList'QuotRBraUnds'IntList{}() : SortIntList{} [constructor{}(), format{}("%c.IntList%r"), functional{}(), injective{}(), klabel{}(".List{\"intList\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,24,66,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), smtlib{}("intList"), terminals{}("1"), userList{}("*")] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] symbol Lbl'Stop'MerkleTree'Unds'SERIALIZATION'Unds'MerkleTree{}() : SortMerkleTree{} [constructor{}(), format{}("%c.MerkleTree%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(434,27,434,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'MessageCellMap{}() : SortMessageCellMap{} [format{}("%c.MessageCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'NoOpCode'Unds'EVM'Unds'MaybeOpCode{}() : SortMaybeOpCode{} [constructor{}(), format{}("%c.NoOpCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(280,28,280,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'Stop'StatusCode'Unds'NETWORK'Unds'StatusCode{}() : SortStatusCode{} [constructor{}(), format{}("%c.StatusCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/network.md)"), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'StringBuffer'Unds'STRING-BUFFER-IN-K'Unds'StringBuffer{}() : SortStringBuffer{} [format{}("%c.StringBuffer%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1930,27,1930,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] symbol Lbl'Stop'TxType'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%c.TxType%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,23,441,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -698,14 +698,14 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblAccountCellMapKey{}(SortAccountCell{}) : SortAcctIDCell{} [format{}("%cAccountCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblBALANCE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBALANCE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1131,26,1131,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBASEFEE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cBASEFEE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,69,948,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), klabel{}("BERLIN_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}("BERLIN_EVM"), terminals{}("1")] symbol LblBLAKE2F'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cBLAKE2F%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,30,1788,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBLOCKHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBLOCKHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(990,26,990,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblBN128Add'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'G1Point{}(SortG1Point{}, SortG1Point{}) : SortG1Point{} [format{}("%cBN128Add%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128add"), klabel{}("BN128Add"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,24,103,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128AtePairing'LParUndsCommUndsRParUnds'KRYPTO'Unds'Bool'Unds'List'Unds'List{}(SortList{}, SortList{}) : SortBool{} [format{}("%cBN128AtePairing%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128ate"), klabel{}("BN128AtePairing"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,21,107,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128Mul'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'Int{}(SortG1Point{}, SortInt{}) : SortG1Point{} [format{}("%cBN128Mul%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128mul"), klabel{}("BN128Mul"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblBYTE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cBYTE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,27,909,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), klabel{}("BYZANTIUM_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}("BYZANTIUM_EVM"), terminals{}("1")] hooked-symbol LblBase2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortString{} [format{}("%cBase2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.base2string"), klabel{}("Base2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,21,1812,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBlake2Compress'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cBlake2Compress%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.blake2compress"), klabel{}("Blake2Compress"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,106)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblBool2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Bool{}(SortBool{}) : SortString{} [format{}("%cBool2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("Bool2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1762,21,1762,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -722,7 +722,7 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblCODECOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,28,984,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCODESIZE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(979,38,979,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCOINBASE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCOINBASE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,28,956,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), klabel{}("CONSTANTINOPLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}("CONSTANTINOPLE_EVM"), terminals{}("1")] symbol LblCREATE2'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cCREATE2%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1599,28,1599,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCREATE'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCREATE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1572,28,1572,36)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCaddraccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCaddraccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Caddraccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Caddraccess"), terminals{}("110101"), total{}()] @@ -744,7 +744,7 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblCsstore'LParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int'Unds'Int'Unds'Int{}(SortSchedule{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cCsstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), functional{}(), klabel{}("Csstore"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,20,107,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Csstore"), terminals{}("1101010101"), total{}()] symbol LblCstorageaccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCstorageaccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cstorageaccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cstorageaccess"), terminals{}("110101"), total{}()] symbol LblCxfer'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int{}(SortSchedule{}, SortInt{}) : SortInt{} [format{}("%cCxfer%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cxfer"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,20,111,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cxfer"), terminals{}("110101"), total{}()] - symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), klabel{}("DEFAULT_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}("DEFAULT_EVM"), terminals{}("1")] symbol LblDELEGATECALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cDELEGATECALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1432,26,1432,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIFFICULTY'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cDIFFICULTY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,66,956,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIV'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cDIV%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,51,890,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -782,7 +782,7 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblEXTCODECOPY'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cEXTCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1167,28,1167,41)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEXTCODEHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODEHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1153,26,1153,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEXTCODESIZE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1142,26,1142,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), klabel{}("FRONTIER_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}("FRONTIER_EVM"), terminals{}("1")] hooked-symbol LblFloat2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float{}(SortFloat{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.float2string"), klabel{}("Float2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,21,1789,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.floatFormat"), klabel{}("FloatFormat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1790,21,1790,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblG'StarLParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Gas'Unds'Gas'Unds'Int'Unds'Int'Unds'Schedule{}(SortGas{}, SortInt{}, SortInt{}, SortSchedule{}) : SortGas{} [format{}("%cG*%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(228,20,228,76)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("1101010101")] @@ -860,38 +860,38 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblGwarmstorageread'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGwarmstorageread%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,129,49,147)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzero'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGzero%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,30,43,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzerovaluenewaccountgas'Unds'SCHEDULE'Unds'ScheduleFlag{}() : SortScheduleFlag{} [constructor{}(), format{}("%cGzerovaluenewaccountgas%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,102,26,127)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), klabel{}("HOMESTEAD_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}("HOMESTEAD_EVM"), terminals{}("1")] symbol LblHPEncodeAux'LParUndsRParUnds'SERIALIZATION'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cHPEncodeAux%r %c(%r %1 %c)%r"), function{}(), klabel{}("HPEncodeAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(564,20,564,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblID'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1714,30,1714,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblINVALID'Unds'EVM'Unds'InvalidOp{}() : SortInvalidOp{} [constructor{}(), format{}("%cINVALID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,26,829,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), klabel{}("ISTANBUL_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}("ISTANBUL_EVM"), terminals{}("1")] symbol LblISZERO'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cISZERO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,26,885,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Endianness'Unds'Signedness{}(SortInt{}, SortEndianness{}, SortSignedness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("Int2BytesNoLen"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2054,20,2054,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("BYTES.int2bytes"), klabel{}("Int2Bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2053,20,2053,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.int2string"), klabel{}("Int2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1811,21,1811,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblJSON2String'LParUndsRParUnds'JSON'Unds'String'Unds'JSON{}(SortJSON{}) : SortString{} [format{}("%cJSON2String%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.json2string"), klabel{}("JSON2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,23,43,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), klabel{}("JSONEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), klabel{}("JSONList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), klabel{}("JSONObject"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), klabel{}("JSONnull"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("JSONs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), userList{}("*")] + symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONEntry"), terminals{}("010")] + symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONList"), terminals{}("101")] + symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONObject"), terminals{}("101")] + symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONnull"), terminals{}("1")] + symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONs"), terminals{}("010"), userList{}("*")] symbol LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cJUMPDEST%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1018,28,1018,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMPI'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cJUMPI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1033,27,1033,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cJUMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,26,1022,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblKeccak256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cKeccak256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256"), klabel{}("Keccak256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblKeccak256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cKeccak256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256raw"), klabel{}("Keccak256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,22,48,104)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblLOG'LParUndsRParUnds'EVM'Unds'LogOp'Unds'Int{}(SortInt{}) : SortLogOp{} [constructor{}(), format{}("%cLOG%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("LOG"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1113,22,1113,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), klabel{}("LONDON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}("LONDON_EVM"), terminals{}("1")] symbol LblLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(926,27,926,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblLegacyProtectedTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}, SortInt{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyProtectedTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c,%r chainId: %7 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyProtectedTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,29,463,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101010101010101")] symbol LblLegacyTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,29,462,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("11010101010101")] symbol LblLegacy'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%cLegacy%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,23,442,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblList2Set'LParUndsRParUnds'COLLECTIONS'Unds'Set'Unds'List{}(SortList{}) : SortSet{} [format{}("%cList2Set%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.list2set"), klabel{}("List2Set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] symbol LblM3'Coln'2048'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%cM3:2048%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(698,20,698,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), klabel{}("MERGE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}("MERGE_EVM"), terminals{}("1")] symbol LblMLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cMLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(864,26,864,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMODEXP'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cMODEXP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1720,30,1720,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,67,890,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -900,8 +900,8 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblMSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(869,27,869,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMULMOD'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cMULMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(904,39,904,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMUL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,35,890,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] symbol LblMerkleBranch'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'Map'Unds'String{}(SortMap{}, SortString{}) : SortMerkleTree{} [constructor{}(), format{}("%cMerkleBranch%r %c(%r %1 %c,%r %2 %c)%r"), functional{}(), injective{}(), klabel{}("MerkleBranch"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(435,27,435,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblMerkleCheck'LParUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree{}(SortMerkleTree{}) : SortMerkleTree{} [format{}("%cMerkleCheck%r %c(%r %1 %c)%r"), function{}(), klabel{}("MerkleCheck"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(508,27,508,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblMerkleDelete'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree'Unds'Bytes{}(SortMerkleTree{}, SortBytes{}) : SortMerkleTree{} [format{}("%cMerkleDelete%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("MerkleDelete"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -916,12 +916,12 @@ module FUNCTIONAL-SPEC-SYNTAX hooked-symbol LblMessageCellMap'Coln'in'Unds'keys{}(SortMsgIDCell{}, SortMessageCellMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), priorities{}(), right{}(), terminals{}("01101"), total{}()] hooked-symbol LblMessageCellMapItem{}(SortMsgIDCell{}, SortMessageCell{}) : SortMessageCellMap{} [format{}("%2"), function{}(), hook{}("MAP.element"), left{}(), priorities{}(), right{}(), terminals{}("110101")] symbol LblMessageCellMapKey{}(SortMessageCell{}) : SortMsgIDCell{} [format{}("%cMessageCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), klabel{}("NORMAL"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("NORMAL"), terminals{}("1")] symbol LblNOT'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cNOT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,37,885,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblNUMBER'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cNUMBER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,55,956,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblORIGIN'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cORIGIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(964,40,964,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPC'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPC%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,28,948,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), klabel{}("PETERSBURG_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}("PETERSBURG_EVM"), terminals{}("1")] symbol LblPOP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cPOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(840,26,840,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPREVRANDAO'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPREVRANDAO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,81,956,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPUSH'LParUndsRParUnds'EVM'Unds'PushOp'Unds'Int{}(SortInt{}) : SortPushOp{} [constructor{}(), format{}("%cPUSH%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("PUSH"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(850,23,850,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -945,23 +945,23 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblSGT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSGT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,35,932,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA256'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cSHA256%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1702,30,1702,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA3'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHA3%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,27,937,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), klabel{}("SHANGHAI_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}("SHANGHAI_EVM"), terminals{}("1")] symbol LblSHL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,27,914,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,35,914,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSIGNEXTEND'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSIGNEXTEND%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,36,909,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cSLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,26,1186,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,27,932,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(899,36,899,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), klabel{}("SPURIOUS_DRAGON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}("SPURIOUS_DRAGON_EVM"), terminals{}("1")] symbol LblSSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1196,27,1196,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTATICCALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cSTATICCALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1446,26,1446,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTOP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cSTOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,28,1047,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSUB'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSUB%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,43,890,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSWAP'LParUndsRParUnds'EVM'Unds'StackOp'Unds'Int{}(SortInt{}) : SortStackOp{} [constructor{}(), format{}("%cSWAP%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("SWAP"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(844,38,844,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSet2List'LParUndsRParUnds'COLLECTIONS'Unds'List'Unds'Set{}(SortSet{}) : SortList{} [format{}("%cSet2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.set2list"), klabel{}("Set2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,19,1049,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] hooked-symbol LblSha256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256"), klabel{}("Sha256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,98)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cSha256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256raw"), klabel{}("Sha256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha3'Unds'256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha3_256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -978,24 +978,24 @@ module FUNCTIONAL-SPEC-SYNTAX hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.string2int"), klabel{}("String2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,21,1810,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblString2JSON'LParUndsRParUnds'JSON'Unds'JSON'Unds'String{}(SortString{}) : SortJSON{} [format{}("%cString2JSON%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.string2json"), klabel{}("String2JSON"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,21,45,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblStringBuffer2String'LParUndsRParUnds'STRING-BUFFER-IN-K'Unds'String'Unds'StringBuffer{}(SortStringBuffer{}) : SortString{} [format{}("%cStringBuffer2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("StringBuffer2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1933,21,1933,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), klabel{}("TANGERINE_WHISTLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}("TANGERINE_WHISTLE_EVM"), terminals{}("1")] symbol LblTIMESTAMP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cTIMESTAMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,41,956,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblUNDEFINED'LParUndsRParUnds'EVM'Unds'InvalidOp'Unds'Int{}(SortInt{}) : SortInvalidOp{} [constructor{}(), format{}("%cUNDEFINED%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,38,829,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), klabel{}("VMTESTS"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("VMTESTS"), terminals{}("1")] symbol LblWordStack2List'LParUndsRParUnds'EVM-TYPES'Unds'List'Unds'WordStack{}(SortWordStack{}) : SortList{} [format{}("%cWordStack2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("WordStack2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,21,311,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblXOR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cXOR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(920,45,920,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] symbol Lbl'UndsPerc'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,20,92,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPerc'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,20,121,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsAnd-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c&Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(165,20,165,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsLParUndsCommUndsRParUnds'SERIALIZATION'Unds'LengthPrefix'Unds'LengthPrefixType'Unds'Int'Unds'Int{}(SortLengthPrefixType{}, SortInt{}, SortInt{}) : SortLengthPrefix{} [constructor{}(), format{}("%1 %c(%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(402,29,402,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("010101")] symbol Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c*Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,20,17,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsStar'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c*Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,20,89,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [format{}("%1 %c+Bytes%r %2"), function{}(), functional{}(), hook{}("BYTES.concat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2150,20,2150,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c+Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,20,20,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'JSONs'UndsUnds'JSON-EXT'Unds'JSONs'Unds'JSONs'Unds'JSONs{}(SortJSONs{}, SortJSONs{}) : SortJSONs{} [format{}("%1 %c+JSONs%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/json-rpc.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}(SortStringBuffer{}, SortString{}) : SortStringBuffer{} [avoid{}(), format{}("%1 %c+String%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1931,27,1931,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [format{}("%1 %c+String%r %2"), function{}(), functional{}(), hook{}("STRING.concat"), latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1701,21,1701,135)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] @@ -1003,64 +1003,64 @@ module FUNCTIONAL-SPEC-SYNTAX symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs{}(SortEventArg{}, SortEventArgs{}) : SortEventArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("eventArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs{}(SortTypedArg{}, SortTypedArgs{}) : SortTypedArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("typedArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c-Gas%r %2"), function{}(), functional{}(), left{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,20,21,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds'-Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c/Gas%r %2"), function{}(), left{}(Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,20,18,45)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_/Int_"), terminals{}("010")] symbol Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,20,91,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,20,120,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c:%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,22,236,46)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortWordStack{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,26,231,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("_WS_"), terminals{}("010")] symbol Lbl'Unds-LT--LT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<>%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,21,23,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] symbol Lbl'Unds-LT-Eqls'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c<=Gas%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,21,24,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), klabel{}("_<=Int_"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}("_<=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [format{}("%1 %c<=Map%r %2"), function{}(), functional{}(), hook{}("MAP.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [format{}("%1 %c<=Set%r %2"), function{}(), functional{}(), hook{}("SET.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(786,19,786,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c<=String%r %2"), function{}(), functional{}(), hook{}("STRING.le"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1846,19,1846,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(136,20,136,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,20,40,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), klabel{}("_=/=Bool_"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), klabel{}("_=/=Int_"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), klabel{}("_=/=K_"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c=/=String%r %2"), function{}(), functional{}(), hook{}("STRING.ne"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1842,19,1842,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), klabel{}("_==Bool_"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), klabel{}("_==Int_"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), klabel{}("_==K_"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c==String%r %2"), function{}(), functional{}(), hook{}("STRING.eq"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1841,19,1841,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsEqlsEqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c==Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(138,20,138,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>=String%r %2"), function{}(), functional{}(), hook{}("STRING.ge"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1848,19,1848,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,20,137,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Byte%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(584,20,584,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] symbol Lbl'Unds-GT--GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,20,168,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>sWord%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(169,20,169,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>String%r %2"), function{}(), functional{}(), hook{}("STRING.gt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1847,19,1847,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(135,20,135,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'AccountCellMap'Unds'{}(SortAccountCellMap{}, SortAccountCellMap{}) : SortAccountCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblAccountCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'AccountCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] hooked-symbol Lbl'Unds'MessageCellMap'Unds'{}(SortMessageCellMap{}, SortMessageCellMap{}) : SortMessageCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblMessageCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'MessageCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortBytes{}, SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), klabel{}("mapWriteRange"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,22,324,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'WordStack'Unds'WordStack'Unds'Int'Unds'Int{}(SortWordStack{}, SortInt{}, SortInt{}) : SortWordStack{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,26,271,74)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("BYTES.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2076,20,2076,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("BYTES.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2085,18,2085,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101")] symbol Lbl'UndsLSqBUndsRSqBUnds'EVM-TYPES'Unds'Int'Unds'WordStack'Unds'Int{}(SortWordStack{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(265,20,265,59)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] symbol Lbl'UndsXor-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Word%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,20,108,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'StackOp'Unds'WordStack{}(SortStackOp{}, SortWordStack{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(454,27,454,44)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int{}(SortUnStackOp{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,27,440,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] @@ -1070,138 +1070,138 @@ module FUNCTIONAL-SPEC-SYNTAX symbol Lbl'UndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'QuadStackOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortQuadStackOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallSixOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallSixOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,27,462,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("0000000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7 %8"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,27,463,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000000")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds'in'UndsUnds'EVM-TYPES'Unds'Bool'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,21,290,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds's'-LT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cs%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPipe'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c|Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,20,164,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), klabel{}("abi_selector"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_address"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_array"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes1"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes10"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes11"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes12"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes13"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes14"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes15"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes17"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes18"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes19"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes2"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes20"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes21"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes22"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes23"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes25"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes26"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes27"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes28"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes29"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes30"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes31"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes4"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes5"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes6"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes7"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes9"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_string"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_selector"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_address"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_array"), terminals{}("11010101")] + symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bool"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes1"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes10"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes11"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes12"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes13"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes14"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes15"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes17"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes18"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes19"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes2"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes20"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes21"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes22"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes23"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes25"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes26"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes27"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes28"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes29"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes3"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes30"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes31"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes4"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes5"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes6"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes7"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes9"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int96"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_string"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint96"), terminals{}("1101")] symbol Lblabs'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabs%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("abs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,20,46,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] - symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("accountEmpty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101"), total{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), klabel{}("bigEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), klabel{}("binRuntime"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}("accountEmpty"), terminals{}("11010101"), total{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("bigEndianBytes"), terminals{}("1")] + symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("binRuntime"), terminals{}("1101")] symbol Lblbit'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("bit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(187,20,187,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("blockHeaderHash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("blockHeaderHashBaseFee"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("blockHeaderHashWithdrawals"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHash"), terminals{}("11010101010101010101010101010101")] + symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashBaseFee"), terminals{}("1101010101010101010101010101010101")] + symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashWithdrawals"), terminals{}("110101010101010101010101010101010101")] symbol Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool{}(SortBool{}) : SortInt{} [format{}("%cbool2Word%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("bool2Word"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("bool2Word"), terminals{}("1101"), total{}()] symbol Lblbyte'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbyte%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("byte"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(188,20,188,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblcategoryChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%ccategoryChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.category"), klabel{}("categoryChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1858,21,1858,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1209,10 +1209,10 @@ module FUNCTIONAL-SPEC-SYNTAX hooked-symbol Lblchoice'LParUndsRParUnds'SET'Unds'KItem'Unds'Set{}(SortSet{}) : SortKItem{} [format{}("%cchoice%r %c(%r %1 %c)%r"), function{}(), hook{}("SET.choice"), klabel{}("Set:choice"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(804,20,804,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblchop'LParUndsRParUnds'WORD'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cchop%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("chop"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(575,20,575,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), smtlib{}("chop"), terminals{}("1101"), total{}()] hooked-symbol LblchrChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cchrChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.chr"), klabel{}("chrChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1718,21,1718,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), klabel{}("contract_access_field"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("contract_access_hash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101")] - symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), klabel{}("contract_access_index"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), klabel{}("contract_access_loc"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_field"), terminals{}("010")] + symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_hash"), terminals{}("110101")] + symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_index"), terminals{}("0101")] + symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_loc"), terminals{}("1101")] hooked-symbol LblcountAllOccurrences'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortInt{} [format{}("%ccountAllOccurrences%r %c(... %r haystack: %1 %c,%r needle: %2 %c)%r"), function{}(), functional{}(), hook{}("STRING.countAllOccurrences"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1831,18,1831,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol LbldecodeBytes'LParUndsCommUndsRParUnds'BYTES-STRING-ENCODE'Unds'String'Unds'String'Unds'Bytes{}(SortString{}, SortBytes{}) : SortString{} [format{}("%cdecodeBytes%r %c(... %r encoding: %1 %c,%r contents: %2 %c)%r"), function{}(), hook{}("BYTES.decodeBytes"), klabel{}("decodeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1986,23,1986,109)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LbldirectionalityChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cdirectionalityChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.directionality"), klabel{}("directionalityChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1859,21,1859,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1227,7 +1227,7 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblgetBloomFilterBit'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%cgetBloomFilterBit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("getBloomFilterBit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,20,706,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblgetExitCode{}(SortGeneratedTopCell{}) : SortInt{} [format{}("%cgetExitCode%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] symbol LblgetGeneratedCounterCell{}(SortGeneratedTopCell{}) : SortGeneratedCounterCell{} [format{}("%cgetGeneratedCounterCell%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] - symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("infGas"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}("infGas"), terminals{}("1101")] symbol LblinitAccessedAccountsCell{}() : SortAccessedAccountsCell{} [format{}("%cinitAccessedAccountsCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccessedStorageCell{}() : SortAccessedStorageCell{} [format{}("%cinitAccessedStorageCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccountCell{}() : SortAccountCellMap{} [format{}("%cinitAccountCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1238,7 +1238,7 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblinitBlockCell{}() : SortBlockCell{} [format{}("%cinitBlockCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockNonceCell{}() : SortBlockNonceCell{} [format{}("%cinitBlockNonceCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockhashesCell{}() : SortBlockhashesCell{} [format{}("%cinitBlockhashesCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), klabel{}("initBytecode"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("initBytecode"), terminals{}("1101")] symbol LblinitCallDataCell{}() : SortCallDataCell{} [format{}("%cinitCallDataCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallDepthCell{}() : SortCallDepthCell{} [format{}("%cinitCallDepthCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallGasCell{}() : SortCallGasCell{} [format{}("%cinitCallGasCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1578,7 +1578,7 @@ module FUNCTIONAL-SPEC-SYNTAX hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("BYTES.length"), klabel{}("lengthBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2140,18,2140,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), total{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%clengthString%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.length"), klabel{}("lengthString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1709,18,1709,80)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LbllistAsBytes'LParUndsRParUnds'EVM'Unds'List'Unds'List{}(SortList{}) : SortList{} [format{}("%clistAsBytes%r %c(%r %1 %c)%r"), function{}(), klabel{}("listAsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,21,687,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), klabel{}("littleEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("littleEndianBytes"), terminals{}("1")] symbol Lbllog256Int'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog256Int%r %c(%r %1 %c)%r"), function{}(), klabel{}("log256Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,20,79,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol Lbllog2Int'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.log2"), klabel{}("log2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1280,18,1280,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblmakeList'LParUndsCommUndsRParUnds'LIST'Unds'List'Unds'Int'Unds'KItem{}(SortInt{}, SortKItem{}) : SortList{} [format{}("%cmakeList%r %c(... %r length: %1 %c,%r value: %2 %c)%r"), function{}(), hook{}("LIST.make"), klabel{}("makeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(974,19,974,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -1838,7 +1838,7 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblnoValueCell{}() : SortValueCellOpt{} [cellOptAbsent{}("ValueCell"), constructor{}(), format{}("%cnoValueCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWithdrawalsRootCell{}() : SortWithdrawalsRootCellOpt{} [cellOptAbsent{}("WithdrawalsRootCell"), constructor{}(), format{}("%cnoWithdrawalsRootCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWordStackCell{}() : SortWordStackCellOpt{} [cellOptAbsent{}("WordStackCell"), constructor{}(), format{}("%cnoWordStackCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] symbol LblnotMaxUInt128'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt128%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,20,440,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt160'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt160%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,20,441,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt16'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt16%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(436,20,436,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -2187,7 +2187,7 @@ module FUNCTIONAL-SPEC-SYNTAX symbol LblsetBloomFilterBits'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%csetBloomFilterBits%r %c(%r %1 %c)%r"), function{}(), klabel{}("setBloomFilterBits"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(702,20,702,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblsgn'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%csgn%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("sgn"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,20,45,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.signExtendBitRange"), klabel{}("signExtendBitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1295,18,1295,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), klabel{}("signedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("signedBytes"), terminals{}("1")] symbol Lblsignextend'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%csignextend%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("signextend"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(211,20,211,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.size"), klabel{}("sizeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1020,18,1020,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("MAP.size"), klabel{}("sizeMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(373,18,373,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -2196,14 +2196,14 @@ module FUNCTIONAL-SPEC-SYNTAX hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.srand"), impure{}(), klabel{}("srandInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1329,16,1329,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblsubstrBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%csubstrBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("BYTES.substr"), klabel{}("substrBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2097,20,2097,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblsubstrString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'String'Unds'Int'Unds'Int{}(SortString{}, SortInt{}, SortInt{}) : SortString{} [format{}("%csubstrString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("STRING.substr"), klabel{}("substrString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1734,21,1734,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), klabel{}("unsignedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("unsignedBytes"), terminals{}("1")] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblword2Bool'LParUndsRParUnds'EVM-TYPES'Unds'Bool'Unds'Int{}(SortInt{}) : SortBool{} [format{}("%cword2Bool%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("word2Bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,21,35,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes{}(SortInt{}, SortList{}, SortBytes{}) : SortSubstateLogEntry{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), functional{}(), injective{}(), klabel{}("logEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(431,33,431,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1010101")] symbol Lbl'LBraUndsPipeUndsRBraUnds'EVM'Unds'Accounts'Unds'AccountsCellFragment'Unds'SubstateCellFragment{}(SortAccountsCellFragment{}, SortSubstateCellFragment{}) : SortAccounts{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("10101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] symbol Lbl'Tild'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%c~Word%r %1"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(163,20,163,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("10"), total{}()] // generated axioms diff --git a/test/regression-evm/test-lemmas-definition.kore b/test/regression-evm/test-lemmas-definition.kore index 4a7991cd09..b518e2e9fe 100644 --- a/test/regression-evm/test-lemmas-definition.kore +++ b/test/regression-evm/test-lemmas-definition.kore @@ -346,9 +346,9 @@ module VERIFICATION symbol Lbl'Hash'asInteger'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asInteger%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asInteger"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,20,349,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'Hash'asWord'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asWord%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asWord"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(345,20,345,71)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("asWord"), terminals{}("1101"), total{}()] symbol Lbl'Hash'asmTxPrefix'LParUndsRParUnds'EVM-TYPES'Unds'TxType'Unds'Int{}(SortInt{}) : SortTxType{} [format{}("%c#asmTxPrefix%r %c(%r %1 %c)%r"), function{}(), klabel{}("#asmTxPrefix"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(453,23,453,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("#blockHashHeaderBaseFeeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("#blockHashHeaderBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("#blockHashHeaderWithdrawalsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBaseFeeBytes"), terminals{}("1101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBytes"), terminals{}("11010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderWithdrawalsBytes"), terminals{}("110101010101010101010101010101010101")] symbol Lbl'Hash'blockhash'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'List'Unds'Int'Unds'Int'Unds'Int{}(SortList{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockhash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), klabel{}("#blockhash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,20,1001,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101010101")] symbol Lbl'Hash'bloomFilter'LParUndsRParUnds'EVM'Unds'Bytes'Unds'List{}(SortList{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c)%r"), function{}(), klabel{}("#bloomFilter"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(679,22,679,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lbl'Hash'bloomFilter'LParUndsCommUndsRParUnds'EVM'Unds'Bytes'Unds'List'Unds'Int{}(SortList{}, SortInt{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("#bloomFilterAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(680,22,680,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -573,16 +573,16 @@ module VERIFICATION hooked-symbol Lbl'Stop'AccountCellMap{}() : SortAccountCellMap{} [format{}("%c.AccountCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'Account'Unds'EVM-TYPES'Unds'Account{}() : SortAccount{} [constructor{}(), format{}("%c.Account%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(387,24,387,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [format{}("%c.Bytes%r"), function{}(), functional{}(), hook{}("BYTES.empty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2003,20,2003,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), klabel{}(".List{\"JSONs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), userList{}("*")] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".List{\"JSONs\"}"), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs'QuotRBraUnds'EventArgs{}() : SortEventArgs{} [constructor{}(), format{}("%c.EventArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"eventArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs'QuotRBraUnds'TypedArgs{}() : SortTypedArgs{} [constructor{}(), format{}("%c.TypedArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"typedArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'HASHED-LOCATIONS'Unds'IntList'Unds'Int'Unds'IntList'QuotRBraUnds'IntList{}() : SortIntList{} [constructor{}(), format{}("%c.IntList%r"), functional{}(), injective{}(), klabel{}(".List{\"intList\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,24,66,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), smtlib{}("intList"), terminals{}("1"), userList{}("*")] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] symbol Lbl'Stop'MerkleTree'Unds'SERIALIZATION'Unds'MerkleTree{}() : SortMerkleTree{} [constructor{}(), format{}("%c.MerkleTree%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(434,27,434,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'MessageCellMap{}() : SortMessageCellMap{} [format{}("%c.MessageCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'NoOpCode'Unds'EVM'Unds'MaybeOpCode{}() : SortMaybeOpCode{} [constructor{}(), format{}("%c.NoOpCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(280,28,280,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'Stop'StatusCode'Unds'NETWORK'Unds'StatusCode{}() : SortStatusCode{} [constructor{}(), format{}("%c.StatusCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/network.md)"), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'StringBuffer'Unds'STRING-BUFFER-IN-K'Unds'StringBuffer{}() : SortStringBuffer{} [format{}("%c.StringBuffer%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1930,27,1930,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] symbol Lbl'Stop'TxType'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%c.TxType%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,23,441,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -696,14 +696,14 @@ module VERIFICATION symbol LblAccountCellMapKey{}(SortAccountCell{}) : SortAcctIDCell{} [format{}("%cAccountCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblBALANCE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBALANCE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1131,26,1131,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBASEFEE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cBASEFEE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,69,948,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), klabel{}("BERLIN_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}("BERLIN_EVM"), terminals{}("1")] symbol LblBLAKE2F'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cBLAKE2F%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,30,1788,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBLOCKHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBLOCKHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(990,26,990,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblBN128Add'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'G1Point{}(SortG1Point{}, SortG1Point{}) : SortG1Point{} [format{}("%cBN128Add%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128add"), klabel{}("BN128Add"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,24,103,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128AtePairing'LParUndsCommUndsRParUnds'KRYPTO'Unds'Bool'Unds'List'Unds'List{}(SortList{}, SortList{}) : SortBool{} [format{}("%cBN128AtePairing%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128ate"), klabel{}("BN128AtePairing"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,21,107,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128Mul'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'Int{}(SortG1Point{}, SortInt{}) : SortG1Point{} [format{}("%cBN128Mul%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128mul"), klabel{}("BN128Mul"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblBYTE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cBYTE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,27,909,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), klabel{}("BYZANTIUM_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}("BYZANTIUM_EVM"), terminals{}("1")] hooked-symbol LblBase2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortString{} [format{}("%cBase2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.base2string"), klabel{}("Base2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,21,1812,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBlake2Compress'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cBlake2Compress%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.blake2compress"), klabel{}("Blake2Compress"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,106)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblBool2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Bool{}(SortBool{}) : SortString{} [format{}("%cBool2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("Bool2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1762,21,1762,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -720,7 +720,7 @@ module VERIFICATION symbol LblCODECOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,28,984,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCODESIZE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(979,38,979,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCOINBASE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCOINBASE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,28,956,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), klabel{}("CONSTANTINOPLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}("CONSTANTINOPLE_EVM"), terminals{}("1")] symbol LblCREATE2'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cCREATE2%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1599,28,1599,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCREATE'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCREATE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1572,28,1572,36)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCaddraccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCaddraccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Caddraccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Caddraccess"), terminals{}("110101"), total{}()] @@ -742,7 +742,7 @@ module VERIFICATION symbol LblCsstore'LParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int'Unds'Int'Unds'Int{}(SortSchedule{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cCsstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), functional{}(), klabel{}("Csstore"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,20,107,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Csstore"), terminals{}("1101010101"), total{}()] symbol LblCstorageaccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCstorageaccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cstorageaccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cstorageaccess"), terminals{}("110101"), total{}()] symbol LblCxfer'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int{}(SortSchedule{}, SortInt{}) : SortInt{} [format{}("%cCxfer%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cxfer"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,20,111,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cxfer"), terminals{}("110101"), total{}()] - symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), klabel{}("DEFAULT_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}("DEFAULT_EVM"), terminals{}("1")] symbol LblDELEGATECALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cDELEGATECALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1432,26,1432,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIFFICULTY'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cDIFFICULTY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,66,956,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIV'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cDIV%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,51,890,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -780,7 +780,7 @@ module VERIFICATION symbol LblEXTCODECOPY'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cEXTCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1167,28,1167,41)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEXTCODEHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODEHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1153,26,1153,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEXTCODESIZE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1142,26,1142,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), klabel{}("FRONTIER_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}("FRONTIER_EVM"), terminals{}("1")] hooked-symbol LblFloat2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float{}(SortFloat{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.float2string"), klabel{}("Float2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,21,1789,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.floatFormat"), klabel{}("FloatFormat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1790,21,1790,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblG'StarLParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Gas'Unds'Gas'Unds'Int'Unds'Int'Unds'Schedule{}(SortGas{}, SortInt{}, SortInt{}, SortSchedule{}) : SortGas{} [format{}("%cG*%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(228,20,228,76)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("1101010101")] @@ -858,38 +858,38 @@ module VERIFICATION symbol LblGwarmstorageread'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGwarmstorageread%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,129,49,147)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzero'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGzero%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,30,43,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzerovaluenewaccountgas'Unds'SCHEDULE'Unds'ScheduleFlag{}() : SortScheduleFlag{} [constructor{}(), format{}("%cGzerovaluenewaccountgas%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,102,26,127)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), klabel{}("HOMESTEAD_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}("HOMESTEAD_EVM"), terminals{}("1")] symbol LblHPEncodeAux'LParUndsRParUnds'SERIALIZATION'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cHPEncodeAux%r %c(%r %1 %c)%r"), function{}(), klabel{}("HPEncodeAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(564,20,564,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblID'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1714,30,1714,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblINVALID'Unds'EVM'Unds'InvalidOp{}() : SortInvalidOp{} [constructor{}(), format{}("%cINVALID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,26,829,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), klabel{}("ISTANBUL_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}("ISTANBUL_EVM"), terminals{}("1")] symbol LblISZERO'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cISZERO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,26,885,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Endianness'Unds'Signedness{}(SortInt{}, SortEndianness{}, SortSignedness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("Int2BytesNoLen"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2054,20,2054,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("BYTES.int2bytes"), klabel{}("Int2Bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2053,20,2053,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.int2string"), klabel{}("Int2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1811,21,1811,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblJSON2String'LParUndsRParUnds'JSON'Unds'String'Unds'JSON{}(SortJSON{}) : SortString{} [format{}("%cJSON2String%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.json2string"), klabel{}("JSON2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,23,43,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), klabel{}("JSONEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), klabel{}("JSONList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), klabel{}("JSONObject"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), klabel{}("JSONnull"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("JSONs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), userList{}("*")] + symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONEntry"), terminals{}("010")] + symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONList"), terminals{}("101")] + symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONObject"), terminals{}("101")] + symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONnull"), terminals{}("1")] + symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONs"), terminals{}("010"), userList{}("*")] symbol LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cJUMPDEST%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1018,28,1018,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMPI'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cJUMPI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1033,27,1033,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cJUMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,26,1022,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblKeccak256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cKeccak256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256"), klabel{}("Keccak256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblKeccak256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cKeccak256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256raw"), klabel{}("Keccak256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,22,48,104)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblLOG'LParUndsRParUnds'EVM'Unds'LogOp'Unds'Int{}(SortInt{}) : SortLogOp{} [constructor{}(), format{}("%cLOG%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("LOG"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1113,22,1113,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), klabel{}("LONDON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}("LONDON_EVM"), terminals{}("1")] symbol LblLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(926,27,926,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblLegacyProtectedTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}, SortInt{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyProtectedTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c,%r chainId: %7 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyProtectedTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,29,463,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101010101010101")] symbol LblLegacyTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,29,462,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("11010101010101")] symbol LblLegacy'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%cLegacy%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,23,442,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblList2Set'LParUndsRParUnds'COLLECTIONS'Unds'Set'Unds'List{}(SortList{}) : SortSet{} [format{}("%cList2Set%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.list2set"), klabel{}("List2Set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] symbol LblM3'Coln'2048'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%cM3:2048%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(698,20,698,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), klabel{}("MERGE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}("MERGE_EVM"), terminals{}("1")] symbol LblMLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cMLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(864,26,864,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMODEXP'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cMODEXP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1720,30,1720,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,67,890,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -898,8 +898,8 @@ module VERIFICATION symbol LblMSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(869,27,869,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMULMOD'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cMULMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(904,39,904,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMUL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,35,890,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] symbol LblMerkleBranch'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'Map'Unds'String{}(SortMap{}, SortString{}) : SortMerkleTree{} [constructor{}(), format{}("%cMerkleBranch%r %c(%r %1 %c,%r %2 %c)%r"), functional{}(), injective{}(), klabel{}("MerkleBranch"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(435,27,435,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblMerkleCheck'LParUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree{}(SortMerkleTree{}) : SortMerkleTree{} [format{}("%cMerkleCheck%r %c(%r %1 %c)%r"), function{}(), klabel{}("MerkleCheck"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(508,27,508,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblMerkleDelete'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree'Unds'Bytes{}(SortMerkleTree{}, SortBytes{}) : SortMerkleTree{} [format{}("%cMerkleDelete%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("MerkleDelete"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -914,12 +914,12 @@ module VERIFICATION hooked-symbol LblMessageCellMap'Coln'in'Unds'keys{}(SortMsgIDCell{}, SortMessageCellMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), priorities{}(), right{}(), terminals{}("01101"), total{}()] hooked-symbol LblMessageCellMapItem{}(SortMsgIDCell{}, SortMessageCell{}) : SortMessageCellMap{} [format{}("%2"), function{}(), hook{}("MAP.element"), left{}(), priorities{}(), right{}(), terminals{}("110101")] symbol LblMessageCellMapKey{}(SortMessageCell{}) : SortMsgIDCell{} [format{}("%cMessageCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), klabel{}("NORMAL"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("NORMAL"), terminals{}("1")] symbol LblNOT'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cNOT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,37,885,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblNUMBER'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cNUMBER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,55,956,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblORIGIN'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cORIGIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(964,40,964,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPC'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPC%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,28,948,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), klabel{}("PETERSBURG_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}("PETERSBURG_EVM"), terminals{}("1")] symbol LblPOP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cPOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(840,26,840,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPREVRANDAO'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPREVRANDAO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,81,956,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPUSH'LParUndsRParUnds'EVM'Unds'PushOp'Unds'Int{}(SortInt{}) : SortPushOp{} [constructor{}(), format{}("%cPUSH%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("PUSH"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(850,23,850,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -943,23 +943,23 @@ module VERIFICATION symbol LblSGT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSGT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,35,932,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA256'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cSHA256%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1702,30,1702,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA3'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHA3%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,27,937,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), klabel{}("SHANGHAI_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}("SHANGHAI_EVM"), terminals{}("1")] symbol LblSHL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,27,914,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,35,914,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSIGNEXTEND'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSIGNEXTEND%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,36,909,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cSLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,26,1186,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,27,932,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(899,36,899,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), klabel{}("SPURIOUS_DRAGON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}("SPURIOUS_DRAGON_EVM"), terminals{}("1")] symbol LblSSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1196,27,1196,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTATICCALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cSTATICCALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1446,26,1446,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTOP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cSTOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,28,1047,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSUB'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSUB%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,43,890,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSWAP'LParUndsRParUnds'EVM'Unds'StackOp'Unds'Int{}(SortInt{}) : SortStackOp{} [constructor{}(), format{}("%cSWAP%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("SWAP"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(844,38,844,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSet2List'LParUndsRParUnds'COLLECTIONS'Unds'List'Unds'Set{}(SortSet{}) : SortList{} [format{}("%cSet2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.set2list"), klabel{}("Set2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,19,1049,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] hooked-symbol LblSha256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256"), klabel{}("Sha256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,98)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cSha256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256raw"), klabel{}("Sha256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha3'Unds'256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha3_256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -976,24 +976,24 @@ module VERIFICATION hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.string2int"), klabel{}("String2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,21,1810,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblString2JSON'LParUndsRParUnds'JSON'Unds'JSON'Unds'String{}(SortString{}) : SortJSON{} [format{}("%cString2JSON%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.string2json"), klabel{}("String2JSON"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,21,45,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblStringBuffer2String'LParUndsRParUnds'STRING-BUFFER-IN-K'Unds'String'Unds'StringBuffer{}(SortStringBuffer{}) : SortString{} [format{}("%cStringBuffer2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("StringBuffer2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1933,21,1933,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), klabel{}("TANGERINE_WHISTLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}("TANGERINE_WHISTLE_EVM"), terminals{}("1")] symbol LblTIMESTAMP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cTIMESTAMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,41,956,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblUNDEFINED'LParUndsRParUnds'EVM'Unds'InvalidOp'Unds'Int{}(SortInt{}) : SortInvalidOp{} [constructor{}(), format{}("%cUNDEFINED%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,38,829,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), klabel{}("VMTESTS"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("VMTESTS"), terminals{}("1")] symbol LblWordStack2List'LParUndsRParUnds'EVM-TYPES'Unds'List'Unds'WordStack{}(SortWordStack{}) : SortList{} [format{}("%cWordStack2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("WordStack2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,21,311,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblXOR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cXOR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(920,45,920,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] symbol Lbl'UndsPerc'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,20,92,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPerc'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,20,121,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsAnd-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c&Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(165,20,165,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsLParUndsCommUndsRParUnds'SERIALIZATION'Unds'LengthPrefix'Unds'LengthPrefixType'Unds'Int'Unds'Int{}(SortLengthPrefixType{}, SortInt{}, SortInt{}) : SortLengthPrefix{} [constructor{}(), format{}("%1 %c(%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(402,29,402,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("010101")] symbol Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c*Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,20,17,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsStar'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c*Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,20,89,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [format{}("%1 %c+Bytes%r %2"), function{}(), functional{}(), hook{}("BYTES.concat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2150,20,2150,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c+Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,20,20,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'JSONs'UndsUnds'JSON-EXT'Unds'JSONs'Unds'JSONs'Unds'JSONs{}(SortJSONs{}, SortJSONs{}) : SortJSONs{} [format{}("%1 %c+JSONs%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/json-rpc.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}(SortStringBuffer{}, SortString{}) : SortStringBuffer{} [avoid{}(), format{}("%1 %c+String%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1931,27,1931,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [format{}("%1 %c+String%r %2"), function{}(), functional{}(), hook{}("STRING.concat"), latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1701,21,1701,135)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] @@ -1001,64 +1001,64 @@ module VERIFICATION symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs{}(SortEventArg{}, SortEventArgs{}) : SortEventArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("eventArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs{}(SortTypedArg{}, SortTypedArgs{}) : SortTypedArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("typedArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c-Gas%r %2"), function{}(), functional{}(), left{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,20,21,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds'-Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c/Gas%r %2"), function{}(), left{}(Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,20,18,45)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_/Int_"), terminals{}("010")] symbol Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,20,91,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,20,120,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c:%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,22,236,46)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortWordStack{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,26,231,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("_WS_"), terminals{}("010")] symbol Lbl'Unds-LT--LT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<>%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,21,23,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] symbol Lbl'Unds-LT-Eqls'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c<=Gas%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,21,24,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), klabel{}("_<=Int_"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}("_<=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [format{}("%1 %c<=Map%r %2"), function{}(), functional{}(), hook{}("MAP.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [format{}("%1 %c<=Set%r %2"), function{}(), functional{}(), hook{}("SET.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(786,19,786,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c<=String%r %2"), function{}(), functional{}(), hook{}("STRING.le"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1846,19,1846,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(136,20,136,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,20,40,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), klabel{}("_=/=Bool_"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), klabel{}("_=/=Int_"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), klabel{}("_=/=K_"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c=/=String%r %2"), function{}(), functional{}(), hook{}("STRING.ne"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1842,19,1842,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), klabel{}("_==Bool_"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), klabel{}("_==Int_"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), klabel{}("_==K_"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c==String%r %2"), function{}(), functional{}(), hook{}("STRING.eq"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1841,19,1841,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsEqlsEqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c==Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(138,20,138,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>=String%r %2"), function{}(), functional{}(), hook{}("STRING.ge"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1848,19,1848,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,20,137,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Byte%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(584,20,584,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] symbol Lbl'Unds-GT--GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,20,168,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>sWord%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(169,20,169,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>String%r %2"), function{}(), functional{}(), hook{}("STRING.gt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1847,19,1847,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(135,20,135,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'AccountCellMap'Unds'{}(SortAccountCellMap{}, SortAccountCellMap{}) : SortAccountCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblAccountCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'AccountCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] hooked-symbol Lbl'Unds'MessageCellMap'Unds'{}(SortMessageCellMap{}, SortMessageCellMap{}) : SortMessageCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblMessageCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'MessageCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortBytes{}, SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), klabel{}("mapWriteRange"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,22,324,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'WordStack'Unds'WordStack'Unds'Int'Unds'Int{}(SortWordStack{}, SortInt{}, SortInt{}) : SortWordStack{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,26,271,74)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("BYTES.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2076,20,2076,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("BYTES.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2085,18,2085,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101")] symbol Lbl'UndsLSqBUndsRSqBUnds'EVM-TYPES'Unds'Int'Unds'WordStack'Unds'Int{}(SortWordStack{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(265,20,265,59)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] symbol Lbl'UndsXor-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Word%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,20,108,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'StackOp'Unds'WordStack{}(SortStackOp{}, SortWordStack{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(454,27,454,44)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int{}(SortUnStackOp{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,27,440,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] @@ -1068,138 +1068,138 @@ module VERIFICATION symbol Lbl'UndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'QuadStackOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortQuadStackOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallSixOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallSixOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,27,462,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("0000000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7 %8"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,27,463,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000000")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds'in'UndsUnds'EVM-TYPES'Unds'Bool'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,21,290,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds's'-LT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cs%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPipe'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c|Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,20,164,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), klabel{}("abi_selector"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_address"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_array"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes1"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes10"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes11"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes12"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes13"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes14"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes15"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes17"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes18"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes19"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes2"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes20"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes21"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes22"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes23"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes25"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes26"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes27"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes28"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes29"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes30"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes31"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes4"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes5"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes6"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes7"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes9"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_string"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_selector"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_address"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_array"), terminals{}("11010101")] + symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bool"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes1"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes10"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes11"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes12"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes13"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes14"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes15"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes17"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes18"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes19"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes2"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes20"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes21"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes22"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes23"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes25"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes26"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes27"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes28"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes29"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes3"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes30"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes31"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes4"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes5"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes6"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes7"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes9"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int96"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_string"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint96"), terminals{}("1101")] symbol Lblabs'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabs%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("abs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,20,46,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] - symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("accountEmpty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101"), total{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), klabel{}("bigEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), klabel{}("binRuntime"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}("accountEmpty"), terminals{}("11010101"), total{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("bigEndianBytes"), terminals{}("1")] + symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("binRuntime"), terminals{}("1101")] symbol Lblbit'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("bit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(187,20,187,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("blockHeaderHash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("blockHeaderHashBaseFee"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("blockHeaderHashWithdrawals"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHash"), terminals{}("11010101010101010101010101010101")] + symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashBaseFee"), terminals{}("1101010101010101010101010101010101")] + symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashWithdrawals"), terminals{}("110101010101010101010101010101010101")] symbol Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool{}(SortBool{}) : SortInt{} [format{}("%cbool2Word%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("bool2Word"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("bool2Word"), terminals{}("1101"), total{}()] symbol Lblbyte'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbyte%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("byte"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(188,20,188,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblcategoryChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%ccategoryChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.category"), klabel{}("categoryChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1858,21,1858,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1207,10 +1207,10 @@ module VERIFICATION hooked-symbol Lblchoice'LParUndsRParUnds'SET'Unds'KItem'Unds'Set{}(SortSet{}) : SortKItem{} [format{}("%cchoice%r %c(%r %1 %c)%r"), function{}(), hook{}("SET.choice"), klabel{}("Set:choice"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(804,20,804,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblchop'LParUndsRParUnds'WORD'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cchop%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("chop"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(575,20,575,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), smtlib{}("chop"), terminals{}("1101"), total{}()] hooked-symbol LblchrChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cchrChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.chr"), klabel{}("chrChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1718,21,1718,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), klabel{}("contract_access_field"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("contract_access_hash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101")] - symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), klabel{}("contract_access_index"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), klabel{}("contract_access_loc"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_field"), terminals{}("010")] + symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_hash"), terminals{}("110101")] + symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_index"), terminals{}("0101")] + symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_loc"), terminals{}("1101")] hooked-symbol LblcountAllOccurrences'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortInt{} [format{}("%ccountAllOccurrences%r %c(... %r haystack: %1 %c,%r needle: %2 %c)%r"), function{}(), functional{}(), hook{}("STRING.countAllOccurrences"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1831,18,1831,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol LbldecodeBytes'LParUndsCommUndsRParUnds'BYTES-STRING-ENCODE'Unds'String'Unds'String'Unds'Bytes{}(SortString{}, SortBytes{}) : SortString{} [format{}("%cdecodeBytes%r %c(... %r encoding: %1 %c,%r contents: %2 %c)%r"), function{}(), hook{}("BYTES.decodeBytes"), klabel{}("decodeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1986,23,1986,109)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LbldirectionalityChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cdirectionalityChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.directionality"), klabel{}("directionalityChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1859,21,1859,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1225,7 +1225,7 @@ module VERIFICATION symbol LblgetBloomFilterBit'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%cgetBloomFilterBit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("getBloomFilterBit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,20,706,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblgetExitCode{}(SortGeneratedTopCell{}) : SortInt{} [format{}("%cgetExitCode%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] symbol LblgetGeneratedCounterCell{}(SortGeneratedTopCell{}) : SortGeneratedCounterCell{} [format{}("%cgetGeneratedCounterCell%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] - symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("infGas"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}("infGas"), terminals{}("1101")] symbol LblinitAccessedAccountsCell{}() : SortAccessedAccountsCell{} [format{}("%cinitAccessedAccountsCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccessedStorageCell{}() : SortAccessedStorageCell{} [format{}("%cinitAccessedStorageCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccountCell{}() : SortAccountCellMap{} [format{}("%cinitAccountCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1236,7 +1236,7 @@ module VERIFICATION symbol LblinitBlockCell{}() : SortBlockCell{} [format{}("%cinitBlockCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockNonceCell{}() : SortBlockNonceCell{} [format{}("%cinitBlockNonceCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockhashesCell{}() : SortBlockhashesCell{} [format{}("%cinitBlockhashesCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), klabel{}("initBytecode"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("initBytecode"), terminals{}("1101")] symbol LblinitCallDataCell{}() : SortCallDataCell{} [format{}("%cinitCallDataCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallDepthCell{}() : SortCallDepthCell{} [format{}("%cinitCallDepthCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallGasCell{}() : SortCallGasCell{} [format{}("%cinitCallGasCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1576,7 +1576,7 @@ module VERIFICATION hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("BYTES.length"), klabel{}("lengthBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2140,18,2140,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), total{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%clengthString%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.length"), klabel{}("lengthString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1709,18,1709,80)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LbllistAsBytes'LParUndsRParUnds'EVM'Unds'List'Unds'List{}(SortList{}) : SortList{} [format{}("%clistAsBytes%r %c(%r %1 %c)%r"), function{}(), klabel{}("listAsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,21,687,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), klabel{}("littleEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("littleEndianBytes"), terminals{}("1")] symbol Lbllog256Int'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog256Int%r %c(%r %1 %c)%r"), function{}(), klabel{}("log256Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,20,79,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol Lbllog2Int'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.log2"), klabel{}("log2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1280,18,1280,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblmakeList'LParUndsCommUndsRParUnds'LIST'Unds'List'Unds'Int'Unds'KItem{}(SortInt{}, SortKItem{}) : SortList{} [format{}("%cmakeList%r %c(... %r length: %1 %c,%r value: %2 %c)%r"), function{}(), hook{}("LIST.make"), klabel{}("makeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(974,19,974,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -1836,7 +1836,7 @@ module VERIFICATION symbol LblnoValueCell{}() : SortValueCellOpt{} [cellOptAbsent{}("ValueCell"), constructor{}(), format{}("%cnoValueCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWithdrawalsRootCell{}() : SortWithdrawalsRootCellOpt{} [cellOptAbsent{}("WithdrawalsRootCell"), constructor{}(), format{}("%cnoWithdrawalsRootCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWordStackCell{}() : SortWordStackCellOpt{} [cellOptAbsent{}("WordStackCell"), constructor{}(), format{}("%cnoWordStackCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] symbol LblnotMaxUInt128'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt128%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,20,440,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt160'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt160%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,20,441,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt16'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt16%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(436,20,436,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -2185,7 +2185,7 @@ module VERIFICATION symbol LblsetBloomFilterBits'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%csetBloomFilterBits%r %c(%r %1 %c)%r"), function{}(), klabel{}("setBloomFilterBits"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(702,20,702,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblsgn'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%csgn%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("sgn"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,20,45,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.signExtendBitRange"), klabel{}("signExtendBitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1295,18,1295,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), klabel{}("signedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("signedBytes"), terminals{}("1")] symbol Lblsignextend'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%csignextend%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("signextend"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(211,20,211,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.size"), klabel{}("sizeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1020,18,1020,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("MAP.size"), klabel{}("sizeMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(373,18,373,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -2194,14 +2194,14 @@ module VERIFICATION hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.srand"), impure{}(), klabel{}("srandInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1329,16,1329,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblsubstrBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%csubstrBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("BYTES.substr"), klabel{}("substrBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2097,20,2097,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblsubstrString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'String'Unds'Int'Unds'Int{}(SortString{}, SortInt{}, SortInt{}) : SortString{} [format{}("%csubstrString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("STRING.substr"), klabel{}("substrString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1734,21,1734,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), klabel{}("unsignedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("unsignedBytes"), terminals{}("1")] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblword2Bool'LParUndsRParUnds'EVM-TYPES'Unds'Bool'Unds'Int{}(SortInt{}) : SortBool{} [format{}("%cword2Bool%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("word2Bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,21,35,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes{}(SortInt{}, SortList{}, SortBytes{}) : SortSubstateLogEntry{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), functional{}(), injective{}(), klabel{}("logEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(431,33,431,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1010101")] symbol Lbl'LBraUndsPipeUndsRBraUnds'EVM'Unds'Accounts'Unds'AccountsCellFragment'Unds'SubstateCellFragment{}(SortAccountsCellFragment{}, SortSubstateCellFragment{}) : SortAccounts{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("10101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] symbol Lbl'Tild'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%c~Word%r %1"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(163,20,163,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("10"), total{}()] // generated axioms diff --git a/test/regression-evm/test-storagevar03-definition.kore b/test/regression-evm/test-storagevar03-definition.kore index be02d7ac6c..a8042dcfdf 100644 --- a/test/regression-evm/test-storagevar03-definition.kore +++ b/test/regression-evm/test-storagevar03-definition.kore @@ -346,9 +346,9 @@ module VERIFICATION symbol Lbl'Hash'asInteger'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asInteger%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asInteger"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,20,349,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'Hash'asWord'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asWord%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asWord"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(345,20,345,71)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("asWord"), terminals{}("1101"), total{}()] symbol Lbl'Hash'asmTxPrefix'LParUndsRParUnds'EVM-TYPES'Unds'TxType'Unds'Int{}(SortInt{}) : SortTxType{} [format{}("%c#asmTxPrefix%r %c(%r %1 %c)%r"), function{}(), klabel{}("#asmTxPrefix"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(453,23,453,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("#blockHashHeaderBaseFeeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("#blockHashHeaderBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("#blockHashHeaderWithdrawalsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBaseFeeBytes"), terminals{}("1101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBytes"), terminals{}("11010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderWithdrawalsBytes"), terminals{}("110101010101010101010101010101010101")] symbol Lbl'Hash'blockhash'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'List'Unds'Int'Unds'Int'Unds'Int{}(SortList{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockhash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), klabel{}("#blockhash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,20,1001,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101010101")] symbol Lbl'Hash'bloomFilter'LParUndsRParUnds'EVM'Unds'Bytes'Unds'List{}(SortList{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c)%r"), function{}(), klabel{}("#bloomFilter"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(679,22,679,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lbl'Hash'bloomFilter'LParUndsCommUndsRParUnds'EVM'Unds'Bytes'Unds'List'Unds'Int{}(SortList{}, SortInt{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("#bloomFilterAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(680,22,680,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -574,16 +574,16 @@ module VERIFICATION hooked-symbol Lbl'Stop'AccountCellMap{}() : SortAccountCellMap{} [format{}("%c.AccountCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'Account'Unds'EVM-TYPES'Unds'Account{}() : SortAccount{} [constructor{}(), format{}("%c.Account%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(387,24,387,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [format{}("%c.Bytes%r"), function{}(), functional{}(), hook{}("BYTES.empty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2003,20,2003,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), klabel{}(".List{\"JSONs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), userList{}("*")] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".List{\"JSONs\"}"), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs'QuotRBraUnds'EventArgs{}() : SortEventArgs{} [constructor{}(), format{}("%c.EventArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"eventArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs'QuotRBraUnds'TypedArgs{}() : SortTypedArgs{} [constructor{}(), format{}("%c.TypedArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"typedArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'HASHED-LOCATIONS'Unds'IntList'Unds'Int'Unds'IntList'QuotRBraUnds'IntList{}() : SortIntList{} [constructor{}(), format{}("%c.IntList%r"), functional{}(), injective{}(), klabel{}(".List{\"intList\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,24,66,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), smtlib{}("intList"), terminals{}("1"), userList{}("*")] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] symbol Lbl'Stop'MerkleTree'Unds'SERIALIZATION'Unds'MerkleTree{}() : SortMerkleTree{} [constructor{}(), format{}("%c.MerkleTree%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(434,27,434,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'MessageCellMap{}() : SortMessageCellMap{} [format{}("%c.MessageCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'NoOpCode'Unds'EVM'Unds'MaybeOpCode{}() : SortMaybeOpCode{} [constructor{}(), format{}("%c.NoOpCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(280,28,280,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'Stop'StatusCode'Unds'NETWORK'Unds'StatusCode{}() : SortStatusCode{} [constructor{}(), format{}("%c.StatusCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/network.md)"), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'StringBuffer'Unds'STRING-BUFFER-IN-K'Unds'StringBuffer{}() : SortStringBuffer{} [format{}("%c.StringBuffer%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1930,27,1930,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] symbol Lbl'Stop'TxType'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%c.TxType%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,23,441,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -697,14 +697,14 @@ module VERIFICATION symbol LblAccountCellMapKey{}(SortAccountCell{}) : SortAcctIDCell{} [format{}("%cAccountCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblBALANCE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBALANCE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1131,26,1131,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBASEFEE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cBASEFEE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,69,948,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), klabel{}("BERLIN_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}("BERLIN_EVM"), terminals{}("1")] symbol LblBLAKE2F'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cBLAKE2F%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,30,1788,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBLOCKHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBLOCKHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(990,26,990,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblBN128Add'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'G1Point{}(SortG1Point{}, SortG1Point{}) : SortG1Point{} [format{}("%cBN128Add%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128add"), klabel{}("BN128Add"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,24,103,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128AtePairing'LParUndsCommUndsRParUnds'KRYPTO'Unds'Bool'Unds'List'Unds'List{}(SortList{}, SortList{}) : SortBool{} [format{}("%cBN128AtePairing%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128ate"), klabel{}("BN128AtePairing"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,21,107,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128Mul'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'Int{}(SortG1Point{}, SortInt{}) : SortG1Point{} [format{}("%cBN128Mul%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128mul"), klabel{}("BN128Mul"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblBYTE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cBYTE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,27,909,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), klabel{}("BYZANTIUM_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}("BYZANTIUM_EVM"), terminals{}("1")] hooked-symbol LblBase2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortString{} [format{}("%cBase2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.base2string"), klabel{}("Base2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,21,1812,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBlake2Compress'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cBlake2Compress%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.blake2compress"), klabel{}("Blake2Compress"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,106)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblBool2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Bool{}(SortBool{}) : SortString{} [format{}("%cBool2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("Bool2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1762,21,1762,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -721,7 +721,7 @@ module VERIFICATION symbol LblCODECOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,28,984,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCODESIZE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(979,38,979,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCOINBASE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCOINBASE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,28,956,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), klabel{}("CONSTANTINOPLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}("CONSTANTINOPLE_EVM"), terminals{}("1")] symbol LblCREATE2'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cCREATE2%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1599,28,1599,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCREATE'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCREATE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1572,28,1572,36)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCaddraccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCaddraccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Caddraccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Caddraccess"), terminals{}("110101"), total{}()] @@ -743,7 +743,7 @@ module VERIFICATION symbol LblCsstore'LParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int'Unds'Int'Unds'Int{}(SortSchedule{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cCsstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), functional{}(), klabel{}("Csstore"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,20,107,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Csstore"), terminals{}("1101010101"), total{}()] symbol LblCstorageaccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCstorageaccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cstorageaccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cstorageaccess"), terminals{}("110101"), total{}()] symbol LblCxfer'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int{}(SortSchedule{}, SortInt{}) : SortInt{} [format{}("%cCxfer%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cxfer"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,20,111,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cxfer"), terminals{}("110101"), total{}()] - symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), klabel{}("DEFAULT_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}("DEFAULT_EVM"), terminals{}("1")] symbol LblDELEGATECALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cDELEGATECALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1432,26,1432,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIFFICULTY'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cDIFFICULTY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,66,956,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIV'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cDIV%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,51,890,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -781,7 +781,7 @@ module VERIFICATION symbol LblEXTCODECOPY'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cEXTCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1167,28,1167,41)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEXTCODEHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODEHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1153,26,1153,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEXTCODESIZE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1142,26,1142,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), klabel{}("FRONTIER_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}("FRONTIER_EVM"), terminals{}("1")] hooked-symbol LblFloat2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float{}(SortFloat{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.float2string"), klabel{}("Float2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,21,1789,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.floatFormat"), klabel{}("FloatFormat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1790,21,1790,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblG'StarLParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Gas'Unds'Gas'Unds'Int'Unds'Int'Unds'Schedule{}(SortGas{}, SortInt{}, SortInt{}, SortSchedule{}) : SortGas{} [format{}("%cG*%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(228,20,228,76)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("1101010101")] @@ -859,38 +859,38 @@ module VERIFICATION symbol LblGwarmstorageread'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGwarmstorageread%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,129,49,147)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzero'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGzero%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,30,43,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzerovaluenewaccountgas'Unds'SCHEDULE'Unds'ScheduleFlag{}() : SortScheduleFlag{} [constructor{}(), format{}("%cGzerovaluenewaccountgas%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,102,26,127)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), klabel{}("HOMESTEAD_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}("HOMESTEAD_EVM"), terminals{}("1")] symbol LblHPEncodeAux'LParUndsRParUnds'SERIALIZATION'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cHPEncodeAux%r %c(%r %1 %c)%r"), function{}(), klabel{}("HPEncodeAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(564,20,564,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblID'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1714,30,1714,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblINVALID'Unds'EVM'Unds'InvalidOp{}() : SortInvalidOp{} [constructor{}(), format{}("%cINVALID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,26,829,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), klabel{}("ISTANBUL_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}("ISTANBUL_EVM"), terminals{}("1")] symbol LblISZERO'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cISZERO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,26,885,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Endianness'Unds'Signedness{}(SortInt{}, SortEndianness{}, SortSignedness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("Int2BytesNoLen"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2054,20,2054,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("BYTES.int2bytes"), klabel{}("Int2Bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2053,20,2053,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.int2string"), klabel{}("Int2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1811,21,1811,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblJSON2String'LParUndsRParUnds'JSON'Unds'String'Unds'JSON{}(SortJSON{}) : SortString{} [format{}("%cJSON2String%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.json2string"), klabel{}("JSON2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,23,43,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), klabel{}("JSONEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), klabel{}("JSONList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), klabel{}("JSONObject"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), klabel{}("JSONnull"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("JSONs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), userList{}("*")] + symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONEntry"), terminals{}("010")] + symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONList"), terminals{}("101")] + symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONObject"), terminals{}("101")] + symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONnull"), terminals{}("1")] + symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONs"), terminals{}("010"), userList{}("*")] symbol LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cJUMPDEST%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1018,28,1018,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMPI'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cJUMPI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1033,27,1033,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cJUMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,26,1022,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblKeccak256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cKeccak256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256"), klabel{}("Keccak256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblKeccak256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cKeccak256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256raw"), klabel{}("Keccak256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,22,48,104)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblLOG'LParUndsRParUnds'EVM'Unds'LogOp'Unds'Int{}(SortInt{}) : SortLogOp{} [constructor{}(), format{}("%cLOG%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("LOG"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1113,22,1113,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), klabel{}("LONDON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}("LONDON_EVM"), terminals{}("1")] symbol LblLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(926,27,926,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblLegacyProtectedTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}, SortInt{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyProtectedTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c,%r chainId: %7 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyProtectedTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,29,463,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101010101010101")] symbol LblLegacyTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,29,462,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("11010101010101")] symbol LblLegacy'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%cLegacy%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,23,442,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblList2Set'LParUndsRParUnds'COLLECTIONS'Unds'Set'Unds'List{}(SortList{}) : SortSet{} [format{}("%cList2Set%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.list2set"), klabel{}("List2Set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] symbol LblM3'Coln'2048'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%cM3:2048%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(698,20,698,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), klabel{}("MERGE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}("MERGE_EVM"), terminals{}("1")] symbol LblMLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cMLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(864,26,864,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMODEXP'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cMODEXP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1720,30,1720,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,67,890,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -899,8 +899,8 @@ module VERIFICATION symbol LblMSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(869,27,869,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMULMOD'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cMULMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(904,39,904,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMUL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,35,890,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] symbol LblMerkleBranch'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'Map'Unds'String{}(SortMap{}, SortString{}) : SortMerkleTree{} [constructor{}(), format{}("%cMerkleBranch%r %c(%r %1 %c,%r %2 %c)%r"), functional{}(), injective{}(), klabel{}("MerkleBranch"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(435,27,435,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblMerkleCheck'LParUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree{}(SortMerkleTree{}) : SortMerkleTree{} [format{}("%cMerkleCheck%r %c(%r %1 %c)%r"), function{}(), klabel{}("MerkleCheck"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(508,27,508,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblMerkleDelete'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree'Unds'Bytes{}(SortMerkleTree{}, SortBytes{}) : SortMerkleTree{} [format{}("%cMerkleDelete%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("MerkleDelete"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -915,12 +915,12 @@ module VERIFICATION hooked-symbol LblMessageCellMap'Coln'in'Unds'keys{}(SortMsgIDCell{}, SortMessageCellMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), priorities{}(), right{}(), terminals{}("01101"), total{}()] hooked-symbol LblMessageCellMapItem{}(SortMsgIDCell{}, SortMessageCell{}) : SortMessageCellMap{} [format{}("%2"), function{}(), hook{}("MAP.element"), left{}(), priorities{}(), right{}(), terminals{}("110101")] symbol LblMessageCellMapKey{}(SortMessageCell{}) : SortMsgIDCell{} [format{}("%cMessageCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), klabel{}("NORMAL"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("NORMAL"), terminals{}("1")] symbol LblNOT'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cNOT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,37,885,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblNUMBER'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cNUMBER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,55,956,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblORIGIN'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cORIGIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(964,40,964,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPC'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPC%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,28,948,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), klabel{}("PETERSBURG_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}("PETERSBURG_EVM"), terminals{}("1")] symbol LblPOP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cPOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(840,26,840,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPREVRANDAO'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPREVRANDAO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,81,956,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPUSH'LParUndsRParUnds'EVM'Unds'PushOp'Unds'Int{}(SortInt{}) : SortPushOp{} [constructor{}(), format{}("%cPUSH%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("PUSH"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(850,23,850,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -944,23 +944,23 @@ module VERIFICATION symbol LblSGT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSGT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,35,932,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA256'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cSHA256%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1702,30,1702,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA3'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHA3%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,27,937,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), klabel{}("SHANGHAI_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}("SHANGHAI_EVM"), terminals{}("1")] symbol LblSHL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,27,914,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,35,914,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSIGNEXTEND'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSIGNEXTEND%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,36,909,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cSLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,26,1186,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,27,932,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(899,36,899,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), klabel{}("SPURIOUS_DRAGON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}("SPURIOUS_DRAGON_EVM"), terminals{}("1")] symbol LblSSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1196,27,1196,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTATICCALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cSTATICCALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1446,26,1446,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTOP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cSTOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,28,1047,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSUB'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSUB%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,43,890,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSWAP'LParUndsRParUnds'EVM'Unds'StackOp'Unds'Int{}(SortInt{}) : SortStackOp{} [constructor{}(), format{}("%cSWAP%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("SWAP"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(844,38,844,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSet2List'LParUndsRParUnds'COLLECTIONS'Unds'List'Unds'Set{}(SortSet{}) : SortList{} [format{}("%cSet2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.set2list"), klabel{}("Set2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,19,1049,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] hooked-symbol LblSha256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256"), klabel{}("Sha256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,98)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cSha256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256raw"), klabel{}("Sha256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha3'Unds'256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha3_256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -977,24 +977,24 @@ module VERIFICATION hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.string2int"), klabel{}("String2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,21,1810,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblString2JSON'LParUndsRParUnds'JSON'Unds'JSON'Unds'String{}(SortString{}) : SortJSON{} [format{}("%cString2JSON%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.string2json"), klabel{}("String2JSON"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,21,45,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblStringBuffer2String'LParUndsRParUnds'STRING-BUFFER-IN-K'Unds'String'Unds'StringBuffer{}(SortStringBuffer{}) : SortString{} [format{}("%cStringBuffer2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("StringBuffer2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1933,21,1933,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), klabel{}("TANGERINE_WHISTLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}("TANGERINE_WHISTLE_EVM"), terminals{}("1")] symbol LblTIMESTAMP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cTIMESTAMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,41,956,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblUNDEFINED'LParUndsRParUnds'EVM'Unds'InvalidOp'Unds'Int{}(SortInt{}) : SortInvalidOp{} [constructor{}(), format{}("%cUNDEFINED%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,38,829,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), klabel{}("VMTESTS"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("VMTESTS"), terminals{}("1")] symbol LblWordStack2List'LParUndsRParUnds'EVM-TYPES'Unds'List'Unds'WordStack{}(SortWordStack{}) : SortList{} [format{}("%cWordStack2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("WordStack2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,21,311,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblXOR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cXOR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(920,45,920,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] symbol Lbl'UndsPerc'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,20,92,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPerc'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,20,121,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsAnd-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c&Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(165,20,165,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsLParUndsCommUndsRParUnds'SERIALIZATION'Unds'LengthPrefix'Unds'LengthPrefixType'Unds'Int'Unds'Int{}(SortLengthPrefixType{}, SortInt{}, SortInt{}) : SortLengthPrefix{} [constructor{}(), format{}("%1 %c(%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(402,29,402,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("010101")] symbol Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c*Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,20,17,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsStar'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c*Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,20,89,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [format{}("%1 %c+Bytes%r %2"), function{}(), functional{}(), hook{}("BYTES.concat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2150,20,2150,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c+Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,20,20,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'JSONs'UndsUnds'JSON-EXT'Unds'JSONs'Unds'JSONs'Unds'JSONs{}(SortJSONs{}, SortJSONs{}) : SortJSONs{} [format{}("%1 %c+JSONs%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/json-rpc.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}(SortStringBuffer{}, SortString{}) : SortStringBuffer{} [avoid{}(), format{}("%1 %c+String%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1931,27,1931,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [format{}("%1 %c+String%r %2"), function{}(), functional{}(), hook{}("STRING.concat"), latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1701,21,1701,135)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] @@ -1002,64 +1002,64 @@ module VERIFICATION symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs{}(SortEventArg{}, SortEventArgs{}) : SortEventArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("eventArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs{}(SortTypedArg{}, SortTypedArgs{}) : SortTypedArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("typedArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c-Gas%r %2"), function{}(), functional{}(), left{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,20,21,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds'-Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c/Gas%r %2"), function{}(), left{}(Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,20,18,45)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_/Int_"), terminals{}("010")] symbol Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,20,91,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,20,120,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c:%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,22,236,46)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortWordStack{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,26,231,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("_WS_"), terminals{}("010")] symbol Lbl'Unds-LT--LT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<>%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,21,23,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] symbol Lbl'Unds-LT-Eqls'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c<=Gas%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,21,24,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), klabel{}("_<=Int_"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}("_<=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [format{}("%1 %c<=Map%r %2"), function{}(), functional{}(), hook{}("MAP.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [format{}("%1 %c<=Set%r %2"), function{}(), functional{}(), hook{}("SET.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(786,19,786,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c<=String%r %2"), function{}(), functional{}(), hook{}("STRING.le"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1846,19,1846,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(136,20,136,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,20,40,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), klabel{}("_=/=Bool_"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), klabel{}("_=/=Int_"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), klabel{}("_=/=K_"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c=/=String%r %2"), function{}(), functional{}(), hook{}("STRING.ne"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1842,19,1842,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), klabel{}("_==Bool_"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), klabel{}("_==Int_"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), klabel{}("_==K_"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c==String%r %2"), function{}(), functional{}(), hook{}("STRING.eq"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1841,19,1841,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsEqlsEqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c==Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(138,20,138,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>=String%r %2"), function{}(), functional{}(), hook{}("STRING.ge"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1848,19,1848,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,20,137,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Byte%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(584,20,584,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] symbol Lbl'Unds-GT--GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,20,168,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>sWord%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(169,20,169,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>String%r %2"), function{}(), functional{}(), hook{}("STRING.gt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1847,19,1847,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(135,20,135,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'AccountCellMap'Unds'{}(SortAccountCellMap{}, SortAccountCellMap{}) : SortAccountCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblAccountCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'AccountCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] hooked-symbol Lbl'Unds'MessageCellMap'Unds'{}(SortMessageCellMap{}, SortMessageCellMap{}) : SortMessageCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblMessageCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'MessageCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortBytes{}, SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), klabel{}("mapWriteRange"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,22,324,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'WordStack'Unds'WordStack'Unds'Int'Unds'Int{}(SortWordStack{}, SortInt{}, SortInt{}) : SortWordStack{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,26,271,74)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("BYTES.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2076,20,2076,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("BYTES.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2085,18,2085,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101")] symbol Lbl'UndsLSqBUndsRSqBUnds'EVM-TYPES'Unds'Int'Unds'WordStack'Unds'Int{}(SortWordStack{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(265,20,265,59)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] symbol Lbl'UndsXor-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Word%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,20,108,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'StackOp'Unds'WordStack{}(SortStackOp{}, SortWordStack{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(454,27,454,44)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int{}(SortUnStackOp{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,27,440,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] @@ -1069,138 +1069,138 @@ module VERIFICATION symbol Lbl'UndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'QuadStackOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortQuadStackOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallSixOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallSixOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,27,462,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("0000000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7 %8"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,27,463,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000000")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds'in'UndsUnds'EVM-TYPES'Unds'Bool'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,21,290,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds's'-LT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cs%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPipe'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c|Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,20,164,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), klabel{}("abi_selector"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_address"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_array"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes1"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes10"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes11"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes12"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes13"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes14"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes15"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes17"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes18"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes19"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes2"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes20"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes21"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes22"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes23"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes25"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes26"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes27"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes28"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes29"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes30"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes31"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes4"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes5"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes6"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes7"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes9"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_string"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_selector"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_address"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_array"), terminals{}("11010101")] + symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bool"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes1"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes10"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes11"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes12"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes13"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes14"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes15"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes17"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes18"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes19"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes2"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes20"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes21"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes22"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes23"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes25"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes26"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes27"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes28"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes29"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes3"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes30"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes31"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes4"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes5"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes6"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes7"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes9"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int96"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_string"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint96"), terminals{}("1101")] symbol Lblabs'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabs%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("abs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,20,46,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] - symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("accountEmpty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101"), total{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), klabel{}("bigEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), klabel{}("binRuntime"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}("accountEmpty"), terminals{}("11010101"), total{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("bigEndianBytes"), terminals{}("1")] + symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("binRuntime"), terminals{}("1101")] symbol Lblbit'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("bit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(187,20,187,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("blockHeaderHash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("blockHeaderHashBaseFee"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("blockHeaderHashWithdrawals"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHash"), terminals{}("11010101010101010101010101010101")] + symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashBaseFee"), terminals{}("1101010101010101010101010101010101")] + symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashWithdrawals"), terminals{}("110101010101010101010101010101010101")] symbol Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool{}(SortBool{}) : SortInt{} [format{}("%cbool2Word%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("bool2Word"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("bool2Word"), terminals{}("1101"), total{}()] symbol Lblbyte'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbyte%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("byte"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(188,20,188,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblcategoryChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%ccategoryChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.category"), klabel{}("categoryChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1858,21,1858,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1208,10 +1208,10 @@ module VERIFICATION hooked-symbol Lblchoice'LParUndsRParUnds'SET'Unds'KItem'Unds'Set{}(SortSet{}) : SortKItem{} [format{}("%cchoice%r %c(%r %1 %c)%r"), function{}(), hook{}("SET.choice"), klabel{}("Set:choice"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(804,20,804,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblchop'LParUndsRParUnds'WORD'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cchop%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("chop"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(575,20,575,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), smtlib{}("chop"), terminals{}("1101"), total{}()] hooked-symbol LblchrChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cchrChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.chr"), klabel{}("chrChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1718,21,1718,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), klabel{}("contract_access_field"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("contract_access_hash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101")] - symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), klabel{}("contract_access_index"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), klabel{}("contract_access_loc"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_field"), terminals{}("010")] + symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_hash"), terminals{}("110101")] + symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_index"), terminals{}("0101")] + symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_loc"), terminals{}("1101")] hooked-symbol LblcountAllOccurrences'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortInt{} [format{}("%ccountAllOccurrences%r %c(... %r haystack: %1 %c,%r needle: %2 %c)%r"), function{}(), functional{}(), hook{}("STRING.countAllOccurrences"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1831,18,1831,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol LbldecodeBytes'LParUndsCommUndsRParUnds'BYTES-STRING-ENCODE'Unds'String'Unds'String'Unds'Bytes{}(SortString{}, SortBytes{}) : SortString{} [format{}("%cdecodeBytes%r %c(... %r encoding: %1 %c,%r contents: %2 %c)%r"), function{}(), hook{}("BYTES.decodeBytes"), klabel{}("decodeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1986,23,1986,109)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LbldirectionalityChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cdirectionalityChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.directionality"), klabel{}("directionalityChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1859,21,1859,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1225,7 +1225,7 @@ module VERIFICATION symbol LblgetBloomFilterBit'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%cgetBloomFilterBit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("getBloomFilterBit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,20,706,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblgetExitCode{}(SortGeneratedTopCell{}) : SortInt{} [format{}("%cgetExitCode%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] symbol LblgetGeneratedCounterCell{}(SortGeneratedTopCell{}) : SortGeneratedCounterCell{} [format{}("%cgetGeneratedCounterCell%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] - symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("infGas"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}("infGas"), terminals{}("1101")] symbol LblinitAccessedAccountsCell{}() : SortAccessedAccountsCell{} [format{}("%cinitAccessedAccountsCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccessedStorageCell{}() : SortAccessedStorageCell{} [format{}("%cinitAccessedStorageCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccountCell{}() : SortAccountCellMap{} [format{}("%cinitAccountCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1236,7 +1236,7 @@ module VERIFICATION symbol LblinitBlockCell{}() : SortBlockCell{} [format{}("%cinitBlockCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockNonceCell{}() : SortBlockNonceCell{} [format{}("%cinitBlockNonceCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockhashesCell{}() : SortBlockhashesCell{} [format{}("%cinitBlockhashesCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), klabel{}("initBytecode"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("initBytecode"), terminals{}("1101")] symbol LblinitCallDataCell{}() : SortCallDataCell{} [format{}("%cinitCallDataCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallDepthCell{}() : SortCallDepthCell{} [format{}("%cinitCallDepthCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallGasCell{}() : SortCallGasCell{} [format{}("%cinitCallGasCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1575,7 +1575,7 @@ module VERIFICATION hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("BYTES.length"), klabel{}("lengthBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2140,18,2140,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), total{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%clengthString%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.length"), klabel{}("lengthString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1709,18,1709,80)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LbllistAsBytes'LParUndsRParUnds'EVM'Unds'List'Unds'List{}(SortList{}) : SortList{} [format{}("%clistAsBytes%r %c(%r %1 %c)%r"), function{}(), klabel{}("listAsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,21,687,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), klabel{}("littleEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("littleEndianBytes"), terminals{}("1")] symbol Lbllog256Int'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog256Int%r %c(%r %1 %c)%r"), function{}(), klabel{}("log256Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,20,79,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol Lbllog2Int'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.log2"), klabel{}("log2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1280,18,1280,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblmakeList'LParUndsCommUndsRParUnds'LIST'Unds'List'Unds'Int'Unds'KItem{}(SortInt{}, SortKItem{}) : SortList{} [format{}("%cmakeList%r %c(... %r length: %1 %c,%r value: %2 %c)%r"), function{}(), hook{}("LIST.make"), klabel{}("makeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(974,19,974,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -1835,7 +1835,7 @@ module VERIFICATION symbol LblnoValueCell{}() : SortValueCellOpt{} [cellOptAbsent{}("ValueCell"), constructor{}(), format{}("%cnoValueCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWithdrawalsRootCell{}() : SortWithdrawalsRootCellOpt{} [cellOptAbsent{}("WithdrawalsRootCell"), constructor{}(), format{}("%cnoWithdrawalsRootCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWordStackCell{}() : SortWordStackCellOpt{} [cellOptAbsent{}("WordStackCell"), constructor{}(), format{}("%cnoWordStackCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] symbol LblnotMaxUInt128'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt128%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,20,440,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt160'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt160%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,20,441,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt16'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt16%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(436,20,436,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -2182,7 +2182,7 @@ module VERIFICATION symbol LblsetBloomFilterBits'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%csetBloomFilterBits%r %c(%r %1 %c)%r"), function{}(), klabel{}("setBloomFilterBits"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(702,20,702,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblsgn'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%csgn%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("sgn"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,20,45,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.signExtendBitRange"), klabel{}("signExtendBitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1295,18,1295,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), klabel{}("signedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("signedBytes"), terminals{}("1")] symbol Lblsignextend'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%csignextend%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("signextend"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(211,20,211,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.size"), klabel{}("sizeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1020,18,1020,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("MAP.size"), klabel{}("sizeMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(373,18,373,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -2191,14 +2191,14 @@ module VERIFICATION hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.srand"), impure{}(), klabel{}("srandInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1329,16,1329,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblsubstrBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%csubstrBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("BYTES.substr"), klabel{}("substrBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2097,20,2097,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblsubstrString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'String'Unds'Int'Unds'Int{}(SortString{}, SortInt{}, SortInt{}) : SortString{} [format{}("%csubstrString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("STRING.substr"), klabel{}("substrString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1734,21,1734,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), klabel{}("unsignedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("unsignedBytes"), terminals{}("1")] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblword2Bool'LParUndsRParUnds'EVM-TYPES'Unds'Bool'Unds'Int{}(SortInt{}) : SortBool{} [format{}("%cword2Bool%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("word2Bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,21,35,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes{}(SortInt{}, SortList{}, SortBytes{}) : SortSubstateLogEntry{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), functional{}(), injective{}(), klabel{}("logEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(431,33,431,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1010101")] symbol Lbl'LBraUndsPipeUndsRBraUnds'EVM'Unds'Accounts'Unds'AccountsCellFragment'Unds'SubstateCellFragment{}(SortAccountsCellFragment{}, SortSubstateCellFragment{}) : SortAccounts{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("10101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] symbol Lbl'Tild'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%c~Word%r %1"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(163,20,163,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("10"), total{}()] // generated axioms diff --git a/test/regression-evm/test-sum-to-n-definition.kore b/test/regression-evm/test-sum-to-n-definition.kore index 0cb2a71633..9e11b3e029 100644 --- a/test/regression-evm/test-sum-to-n-definition.kore +++ b/test/regression-evm/test-sum-to-n-definition.kore @@ -339,9 +339,9 @@ module VERIFICATION symbol Lbl'Hash'asmOpCodes'LParUndsRParUnds'EVM-ASSEMBLY'Unds'Bytes'Unds'OpCodes{}(SortOpCodes{}) : SortBytes{} [format{}("%c#asmOpCodes%r %c(%r %1 %c)%r"), function{}(), klabel{}("#asmOpCodes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,22,39,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/asm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lbl'Hash'asmOpCodes'LParUndsCommUndsRParUnds'EVM-ASSEMBLY'Unds'Bytes'Unds'OpCodes'Unds'StringBuffer{}(SortOpCodes{}, SortStringBuffer{}) : SortBytes{} [format{}("%c#asmOpCodes%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("#asmOpCodesAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,22,44,94)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/asm.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol Lbl'Hash'asmTxPrefix'LParUndsRParUnds'EVM-TYPES'Unds'TxType'Unds'Int{}(SortInt{}) : SortTxType{} [format{}("%c#asmTxPrefix%r %c(%r %1 %c)%r"), function{}(), klabel{}("#asmTxPrefix"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(453,23,453,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("#blockHashHeaderBaseFeeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("#blockHashHeaderBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("#blockHashHeaderWithdrawalsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBaseFeeBytes"), terminals{}("1101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBytes"), terminals{}("11010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderWithdrawalsBytes"), terminals{}("110101010101010101010101010101010101")] symbol Lbl'Hash'blockhash'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'List'Unds'Int'Unds'Int'Unds'Int{}(SortList{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockhash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), klabel{}("#blockhash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,20,1001,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101010101")] symbol Lbl'Hash'bloomFilter'LParUndsRParUnds'EVM'Unds'Bytes'Unds'List{}(SortList{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c)%r"), function{}(), klabel{}("#bloomFilter"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(679,22,679,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lbl'Hash'bloomFilter'LParUndsCommUndsRParUnds'EVM'Unds'Bytes'Unds'List'Unds'Int{}(SortList{}, SortInt{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("#bloomFilterAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(680,22,680,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -548,14 +548,14 @@ module VERIFICATION hooked-symbol Lbl'Stop'AccountCellMap{}() : SortAccountCellMap{} [format{}("%c.AccountCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'Account'Unds'EVM-TYPES'Unds'Account{}() : SortAccount{} [constructor{}(), format{}("%c.Account%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(387,24,387,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [format{}("%c.Bytes%r"), function{}(), functional{}(), hook{}("BYTES.empty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2003,20,2003,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), klabel{}(".List{\"JSONs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), userList{}("*")] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".List{\"JSONs\"}"), terminals{}("1"), userList{}("*")] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] symbol Lbl'Stop'MerkleTree'Unds'SERIALIZATION'Unds'MerkleTree{}() : SortMerkleTree{} [constructor{}(), format{}("%c.MerkleTree%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(434,27,434,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'MessageCellMap{}() : SortMessageCellMap{} [format{}("%c.MessageCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'NoOpCode'Unds'EVM'Unds'MaybeOpCode{}() : SortMaybeOpCode{} [constructor{}(), format{}("%c.NoOpCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(280,28,280,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'OpCodes'Unds'EVM-ASSEMBLY'Unds'OpCodes{}() : SortOpCodes{} [constructor{}(), format{}("%c.OpCodes%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/asm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'Stop'StatusCode'Unds'NETWORK'Unds'StatusCode{}() : SortStatusCode{} [constructor{}(), format{}("%c.StatusCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/network.md)"), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'StringBuffer'Unds'STRING-BUFFER-IN-K'Unds'StringBuffer{}() : SortStringBuffer{} [format{}("%c.StringBuffer%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1930,27,1930,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] symbol Lbl'Stop'TxType'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%c.TxType%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,23,441,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -669,14 +669,14 @@ module VERIFICATION symbol LblAccountCellMapKey{}(SortAccountCell{}) : SortAcctIDCell{} [format{}("%cAccountCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblBALANCE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBALANCE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1131,26,1131,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBASEFEE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cBASEFEE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,69,948,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), klabel{}("BERLIN_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}("BERLIN_EVM"), terminals{}("1")] symbol LblBLAKE2F'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cBLAKE2F%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,30,1788,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBLOCKHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBLOCKHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(990,26,990,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblBN128Add'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'G1Point{}(SortG1Point{}, SortG1Point{}) : SortG1Point{} [format{}("%cBN128Add%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128add"), klabel{}("BN128Add"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,24,103,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128AtePairing'LParUndsCommUndsRParUnds'KRYPTO'Unds'Bool'Unds'List'Unds'List{}(SortList{}, SortList{}) : SortBool{} [format{}("%cBN128AtePairing%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128ate"), klabel{}("BN128AtePairing"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,21,107,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128Mul'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'Int{}(SortG1Point{}, SortInt{}) : SortG1Point{} [format{}("%cBN128Mul%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128mul"), klabel{}("BN128Mul"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblBYTE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cBYTE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,27,909,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), klabel{}("BYZANTIUM_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}("BYZANTIUM_EVM"), terminals{}("1")] hooked-symbol LblBase2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortString{} [format{}("%cBase2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.base2string"), klabel{}("Base2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,21,1812,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBlake2Compress'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cBlake2Compress%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.blake2compress"), klabel{}("Blake2Compress"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,106)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblBool2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Bool{}(SortBool{}) : SortString{} [format{}("%cBool2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("Bool2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1762,21,1762,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -693,7 +693,7 @@ module VERIFICATION symbol LblCODECOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,28,984,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCODESIZE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(979,38,979,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCOINBASE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCOINBASE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,28,956,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), klabel{}("CONSTANTINOPLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}("CONSTANTINOPLE_EVM"), terminals{}("1")] symbol LblCREATE2'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cCREATE2%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1599,28,1599,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCREATE'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCREATE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1572,28,1572,36)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCaddraccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCaddraccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Caddraccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Caddraccess"), terminals{}("110101"), total{}()] @@ -715,7 +715,7 @@ module VERIFICATION symbol LblCsstore'LParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int'Unds'Int'Unds'Int{}(SortSchedule{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cCsstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), functional{}(), klabel{}("Csstore"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,20,107,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Csstore"), terminals{}("1101010101"), total{}()] symbol LblCstorageaccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCstorageaccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cstorageaccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cstorageaccess"), terminals{}("110101"), total{}()] symbol LblCxfer'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int{}(SortSchedule{}, SortInt{}) : SortInt{} [format{}("%cCxfer%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cxfer"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,20,111,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cxfer"), terminals{}("110101"), total{}()] - symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), klabel{}("DEFAULT_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}("DEFAULT_EVM"), terminals{}("1")] symbol LblDELEGATECALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cDELEGATECALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1432,26,1432,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIFFICULTY'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cDIFFICULTY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,66,956,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIV'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cDIV%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,51,890,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -753,7 +753,7 @@ module VERIFICATION symbol LblEXTCODECOPY'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cEXTCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1167,28,1167,41)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEXTCODEHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODEHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1153,26,1153,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEXTCODESIZE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1142,26,1142,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), klabel{}("FRONTIER_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}("FRONTIER_EVM"), terminals{}("1")] hooked-symbol LblFloat2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float{}(SortFloat{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.float2string"), klabel{}("Float2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,21,1789,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.floatFormat"), klabel{}("FloatFormat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1790,21,1790,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblG'StarLParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Gas'Unds'Gas'Unds'Int'Unds'Int'Unds'Schedule{}(SortGas{}, SortInt{}, SortInt{}, SortSchedule{}) : SortGas{} [format{}("%cG*%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(228,20,228,76)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("1101010101")] @@ -831,38 +831,38 @@ module VERIFICATION symbol LblGwarmstorageread'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGwarmstorageread%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,129,49,147)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzero'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGzero%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,30,43,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzerovaluenewaccountgas'Unds'SCHEDULE'Unds'ScheduleFlag{}() : SortScheduleFlag{} [constructor{}(), format{}("%cGzerovaluenewaccountgas%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,102,26,127)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), klabel{}("HOMESTEAD_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}("HOMESTEAD_EVM"), terminals{}("1")] symbol LblHPEncodeAux'LParUndsRParUnds'SERIALIZATION'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cHPEncodeAux%r %c(%r %1 %c)%r"), function{}(), klabel{}("HPEncodeAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(564,20,564,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblID'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1714,30,1714,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblINVALID'Unds'EVM'Unds'InvalidOp{}() : SortInvalidOp{} [constructor{}(), format{}("%cINVALID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,26,829,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), klabel{}("ISTANBUL_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}("ISTANBUL_EVM"), terminals{}("1")] symbol LblISZERO'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cISZERO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,26,885,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Endianness'Unds'Signedness{}(SortInt{}, SortEndianness{}, SortSignedness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("Int2BytesNoLen"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2054,20,2054,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("BYTES.int2bytes"), klabel{}("Int2Bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2053,20,2053,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.int2string"), klabel{}("Int2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1811,21,1811,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblJSON2String'LParUndsRParUnds'JSON'Unds'String'Unds'JSON{}(SortJSON{}) : SortString{} [format{}("%cJSON2String%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.json2string"), klabel{}("JSON2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,23,43,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), klabel{}("JSONEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), klabel{}("JSONList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), klabel{}("JSONObject"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), klabel{}("JSONnull"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("JSONs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), userList{}("*")] + symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONEntry"), terminals{}("010")] + symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONList"), terminals{}("101")] + symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONObject"), terminals{}("101")] + symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONnull"), terminals{}("1")] + symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONs"), terminals{}("010"), userList{}("*")] symbol LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cJUMPDEST%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1018,28,1018,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMPI'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cJUMPI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1033,27,1033,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cJUMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,26,1022,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblKeccak256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cKeccak256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256"), klabel{}("Keccak256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblKeccak256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cKeccak256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256raw"), klabel{}("Keccak256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,22,48,104)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblLOG'LParUndsRParUnds'EVM'Unds'LogOp'Unds'Int{}(SortInt{}) : SortLogOp{} [constructor{}(), format{}("%cLOG%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("LOG"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1113,22,1113,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), klabel{}("LONDON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}("LONDON_EVM"), terminals{}("1")] symbol LblLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(926,27,926,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblLegacyProtectedTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}, SortInt{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyProtectedTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c,%r chainId: %7 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyProtectedTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,29,463,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101010101010101")] symbol LblLegacyTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,29,462,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("11010101010101")] symbol LblLegacy'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%cLegacy%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,23,442,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblList2Set'LParUndsRParUnds'COLLECTIONS'Unds'Set'Unds'List{}(SortList{}) : SortSet{} [format{}("%cList2Set%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.list2set"), klabel{}("List2Set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] symbol LblM3'Coln'2048'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%cM3:2048%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(698,20,698,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), klabel{}("MERGE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}("MERGE_EVM"), terminals{}("1")] symbol LblMLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cMLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(864,26,864,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMODEXP'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cMODEXP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1720,30,1720,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,67,890,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -871,8 +871,8 @@ module VERIFICATION symbol LblMSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(869,27,869,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMULMOD'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cMULMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(904,39,904,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMUL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,35,890,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] symbol LblMerkleBranch'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'Map'Unds'String{}(SortMap{}, SortString{}) : SortMerkleTree{} [constructor{}(), format{}("%cMerkleBranch%r %c(%r %1 %c,%r %2 %c)%r"), functional{}(), injective{}(), klabel{}("MerkleBranch"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(435,27,435,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblMerkleCheck'LParUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree{}(SortMerkleTree{}) : SortMerkleTree{} [format{}("%cMerkleCheck%r %c(%r %1 %c)%r"), function{}(), klabel{}("MerkleCheck"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(508,27,508,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblMerkleDelete'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree'Unds'Bytes{}(SortMerkleTree{}, SortBytes{}) : SortMerkleTree{} [format{}("%cMerkleDelete%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("MerkleDelete"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -887,12 +887,12 @@ module VERIFICATION hooked-symbol LblMessageCellMap'Coln'in'Unds'keys{}(SortMsgIDCell{}, SortMessageCellMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), priorities{}(), right{}(), terminals{}("01101"), total{}()] hooked-symbol LblMessageCellMapItem{}(SortMsgIDCell{}, SortMessageCell{}) : SortMessageCellMap{} [format{}("%2"), function{}(), hook{}("MAP.element"), left{}(), priorities{}(), right{}(), terminals{}("110101")] symbol LblMessageCellMapKey{}(SortMessageCell{}) : SortMsgIDCell{} [format{}("%cMessageCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), klabel{}("NORMAL"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("NORMAL"), terminals{}("1")] symbol LblNOT'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cNOT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,37,885,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblNUMBER'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cNUMBER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,55,956,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblORIGIN'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cORIGIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(964,40,964,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPC'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPC%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,28,948,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), klabel{}("PETERSBURG_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}("PETERSBURG_EVM"), terminals{}("1")] symbol LblPOP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cPOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(840,26,840,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPREVRANDAO'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPREVRANDAO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,81,956,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPUSH'LParUndsRParUnds'EVM'Unds'PushOp'Unds'Int{}(SortInt{}) : SortPushOp{} [constructor{}(), format{}("%cPUSH%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("PUSH"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(850,23,850,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -917,23 +917,23 @@ module VERIFICATION symbol LblSGT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSGT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,35,932,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA256'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cSHA256%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1702,30,1702,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA3'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHA3%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,27,937,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), klabel{}("SHANGHAI_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}("SHANGHAI_EVM"), terminals{}("1")] symbol LblSHL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,27,914,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,35,914,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSIGNEXTEND'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSIGNEXTEND%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,36,909,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cSLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,26,1186,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,27,932,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(899,36,899,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), klabel{}("SPURIOUS_DRAGON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}("SPURIOUS_DRAGON_EVM"), terminals{}("1")] symbol LblSSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1196,27,1196,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTATICCALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cSTATICCALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1446,26,1446,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTOP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cSTOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,28,1047,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSUB'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSUB%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,43,890,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSWAP'LParUndsRParUnds'EVM'Unds'StackOp'Unds'Int{}(SortInt{}) : SortStackOp{} [constructor{}(), format{}("%cSWAP%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("SWAP"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(844,38,844,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSet2List'LParUndsRParUnds'COLLECTIONS'Unds'List'Unds'Set{}(SortSet{}) : SortList{} [format{}("%cSet2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.set2list"), klabel{}("Set2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,19,1049,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] hooked-symbol LblSha256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256"), klabel{}("Sha256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,98)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cSha256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256raw"), klabel{}("Sha256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha3'Unds'256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha3_256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -950,88 +950,88 @@ module VERIFICATION hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.string2int"), klabel{}("String2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,21,1810,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblString2JSON'LParUndsRParUnds'JSON'Unds'JSON'Unds'String{}(SortString{}) : SortJSON{} [format{}("%cString2JSON%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.string2json"), klabel{}("String2JSON"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,21,45,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblStringBuffer2String'LParUndsRParUnds'STRING-BUFFER-IN-K'Unds'String'Unds'StringBuffer{}(SortStringBuffer{}) : SortString{} [format{}("%cStringBuffer2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("StringBuffer2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1933,21,1933,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), klabel{}("TANGERINE_WHISTLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}("TANGERINE_WHISTLE_EVM"), terminals{}("1")] symbol LblTIMESTAMP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cTIMESTAMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,41,956,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblUNDEFINED'LParUndsRParUnds'EVM'Unds'InvalidOp'Unds'Int{}(SortInt{}) : SortInvalidOp{} [constructor{}(), format{}("%cUNDEFINED%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,38,829,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), klabel{}("VMTESTS"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("VMTESTS"), terminals{}("1")] symbol LblWordStack2List'LParUndsRParUnds'EVM-TYPES'Unds'List'Unds'WordStack{}(SortWordStack{}) : SortList{} [format{}("%cWordStack2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("WordStack2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,21,311,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblXOR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cXOR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(920,45,920,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] symbol Lbl'UndsPerc'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,20,92,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPerc'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,20,121,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsAnd-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c&Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(165,20,165,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsLParUndsCommUndsRParUnds'SERIALIZATION'Unds'LengthPrefix'Unds'LengthPrefixType'Unds'Int'Unds'Int{}(SortLengthPrefixType{}, SortInt{}, SortInt{}) : SortLengthPrefix{} [constructor{}(), format{}("%1 %c(%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(402,29,402,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("010101")] symbol Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c*Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,20,17,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsStar'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c*Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,20,89,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [format{}("%1 %c+Bytes%r %2"), function{}(), functional{}(), hook{}("BYTES.concat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2150,20,2150,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c+Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,20,20,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'JSONs'UndsUnds'JSON-EXT'Unds'JSONs'Unds'JSONs'Unds'JSONs{}(SortJSONs{}, SortJSONs{}) : SortJSONs{} [format{}("%1 %c+JSONs%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/json-rpc.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}(SortStringBuffer{}, SortString{}) : SortStringBuffer{} [avoid{}(), format{}("%1 %c+String%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1931,27,1931,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [format{}("%1 %c+String%r %2"), function{}(), functional{}(), hook{}("STRING.concat"), latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1701,21,1701,135)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c+Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,20,88,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c-Gas%r %2"), function{}(), functional{}(), left{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,20,21,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds'-Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c/Gas%r %2"), function{}(), left{}(Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,20,18,45)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_/Int_"), terminals{}("010")] symbol Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,20,91,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,20,120,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c:%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,22,236,46)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortWordStack{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,26,231,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("_WS_"), terminals{}("010")] symbol Lbl'UndsSClnUndsUnds'EVM-ASSEMBLY'Unds'OpCodes'Unds'OpCode'Unds'OpCodes{}(SortOpCode{}, SortOpCodes{}) : SortOpCodes{} [constructor{}(), format{}("%1 %c;%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,37,26,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/asm.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'Unds-LT--LT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<>%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,21,23,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] symbol Lbl'Unds-LT-Eqls'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c<=Gas%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,21,24,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), klabel{}("_<=Int_"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}("_<=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [format{}("%1 %c<=Map%r %2"), function{}(), functional{}(), hook{}("MAP.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [format{}("%1 %c<=Set%r %2"), function{}(), functional{}(), hook{}("SET.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(786,19,786,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c<=String%r %2"), function{}(), functional{}(), hook{}("STRING.le"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1846,19,1846,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(136,20,136,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,20,40,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), klabel{}("_=/=Bool_"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), klabel{}("_=/=Int_"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), klabel{}("_=/=K_"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c=/=String%r %2"), function{}(), functional{}(), hook{}("STRING.ne"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1842,19,1842,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), klabel{}("_==Bool_"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), klabel{}("_==Int_"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), klabel{}("_==K_"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c==String%r %2"), function{}(), functional{}(), hook{}("STRING.eq"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1841,19,1841,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsEqlsEqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c==Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(138,20,138,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>=String%r %2"), function{}(), functional{}(), hook{}("STRING.ge"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1848,19,1848,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,20,137,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Byte%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(584,20,584,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] symbol Lbl'Unds-GT--GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,20,168,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>sWord%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(169,20,169,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>String%r %2"), function{}(), functional{}(), hook{}("STRING.gt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1847,19,1847,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(135,20,135,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'AccountCellMap'Unds'{}(SortAccountCellMap{}, SortAccountCellMap{}) : SortAccountCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblAccountCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'AccountCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] hooked-symbol Lbl'Unds'MessageCellMap'Unds'{}(SortMessageCellMap{}, SortMessageCellMap{}) : SortMessageCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblMessageCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'MessageCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortBytes{}, SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), klabel{}("mapWriteRange"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,22,324,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'WordStack'Unds'WordStack'Unds'Int'Unds'Int{}(SortWordStack{}, SortInt{}, SortInt{}) : SortWordStack{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,26,271,74)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("BYTES.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2076,20,2076,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("BYTES.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2085,18,2085,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101")] symbol Lbl'UndsLSqBUndsRSqBUnds'EVM-TYPES'Unds'Int'Unds'WordStack'Unds'Int{}(SortWordStack{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(265,20,265,59)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] symbol Lbl'UndsXor-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Word%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,20,108,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'StackOp'Unds'WordStack{}(SortStackOp{}, SortWordStack{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(454,27,454,44)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int{}(SortUnStackOp{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,27,440,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] @@ -1040,35 +1040,35 @@ module VERIFICATION symbol Lbl'UndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'QuadStackOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortQuadStackOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallSixOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallSixOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,27,462,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("0000000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7 %8"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,27,463,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000000")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds'in'UndsUnds'EVM-TYPES'Unds'Bool'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,21,290,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds's'-LT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cs%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPipe'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c|Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,20,164,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lblabs'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabs%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("abs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,20,46,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] - symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("accountEmpty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101"), total{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), klabel{}("bigEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}("accountEmpty"), terminals{}("11010101"), total{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("bigEndianBytes"), terminals{}("1")] symbol Lblbit'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("bit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(187,20,187,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("blockHeaderHash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("blockHeaderHashBaseFee"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("blockHeaderHashWithdrawals"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHash"), terminals{}("11010101010101010101010101010101")] + symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashBaseFee"), terminals{}("1101010101010101010101010101010101")] + symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashWithdrawals"), terminals{}("110101010101010101010101010101010101")] symbol Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool{}(SortBool{}) : SortInt{} [format{}("%cbool2Word%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("bool2Word"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("bool2Word"), terminals{}("1101"), total{}()] symbol Lblbyte'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbyte%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("byte"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(188,20,188,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblcategoryChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%ccategoryChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.category"), klabel{}("categoryChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1858,21,1858,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1430,7 +1430,7 @@ module VERIFICATION hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("BYTES.length"), klabel{}("lengthBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2140,18,2140,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), total{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%clengthString%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.length"), klabel{}("lengthString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1709,18,1709,80)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LbllistAsBytes'LParUndsRParUnds'EVM'Unds'List'Unds'List{}(SortList{}) : SortList{} [format{}("%clistAsBytes%r %c(%r %1 %c)%r"), function{}(), klabel{}("listAsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,21,687,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), klabel{}("littleEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("littleEndianBytes"), terminals{}("1")] symbol Lbllog256Int'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog256Int%r %c(%r %1 %c)%r"), function{}(), klabel{}("log256Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,20,79,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol Lbllog2Int'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.log2"), klabel{}("log2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1280,18,1280,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblmakeList'LParUndsCommUndsRParUnds'LIST'Unds'List'Unds'Int'Unds'KItem{}(SortInt{}, SortKItem{}) : SortList{} [format{}("%cmakeList%r %c(... %r length: %1 %c,%r value: %2 %c)%r"), function{}(), hook{}("LIST.make"), klabel{}("makeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(974,19,974,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -1690,7 +1690,7 @@ module VERIFICATION symbol LblnoValueCell{}() : SortValueCellOpt{} [cellOptAbsent{}("ValueCell"), constructor{}(), format{}("%cnoValueCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWithdrawalsRootCell{}() : SortWithdrawalsRootCellOpt{} [cellOptAbsent{}("WithdrawalsRootCell"), constructor{}(), format{}("%cnoWithdrawalsRootCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWordStackCell{}() : SortWordStackCellOpt{} [cellOptAbsent{}("WordStackCell"), constructor{}(), format{}("%cnoWordStackCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] symbol LblnotMaxUInt128'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt128%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,20,440,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt160'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt160%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,20,441,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt16'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt16%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(436,20,436,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -2030,7 +2030,7 @@ module VERIFICATION symbol LblsetBloomFilterBits'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%csetBloomFilterBits%r %c(%r %1 %c)%r"), function{}(), klabel{}("setBloomFilterBits"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(702,20,702,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblsgn'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%csgn%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("sgn"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,20,45,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.signExtendBitRange"), klabel{}("signExtendBitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1295,18,1295,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), klabel{}("signedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("signedBytes"), terminals{}("1")] symbol Lblsignextend'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%csignextend%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("signextend"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(211,20,211,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.size"), klabel{}("sizeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1020,18,1020,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("MAP.size"), klabel{}("sizeMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(373,18,373,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -2040,14 +2040,14 @@ module VERIFICATION hooked-symbol LblsubstrBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%csubstrBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("BYTES.substr"), klabel{}("substrBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2097,20,2097,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblsubstrString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'String'Unds'Int'Unds'Int{}(SortString{}, SortInt{}, SortInt{}) : SortString{} [format{}("%csubstrString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("STRING.substr"), klabel{}("substrString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1734,21,1734,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] symbol LblsumToN'Unds'VERIFICATION'Unds'Bytes{}() : SortBytes{} [format{}("%csumToN%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/tests/specs/examples/sum-to-n-spec.k)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), klabel{}("unsignedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("unsignedBytes"), terminals{}("1")] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblword2Bool'LParUndsRParUnds'EVM-TYPES'Unds'Bool'Unds'Int{}(SortInt{}) : SortBool{} [format{}("%cword2Bool%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("word2Bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,21,35,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes{}(SortInt{}, SortList{}, SortBytes{}) : SortSubstateLogEntry{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), functional{}(), injective{}(), klabel{}("logEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(431,33,431,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1010101")] symbol Lbl'LBraUndsPipeUndsRBraUnds'EVM'Unds'Accounts'Unds'AccountsCellFragment'Unds'SubstateCellFragment{}(SortAccountsCellFragment{}, SortSubstateCellFragment{}) : SortAccounts{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("10101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] symbol Lbl'Tild'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%c~Word%r %1"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(163,20,163,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("10"), total{}()] // generated axioms diff --git a/test/regression-evm/test-totalSupply-definition.kore b/test/regression-evm/test-totalSupply-definition.kore index 47815ea52b..6e03430714 100644 --- a/test/regression-evm/test-totalSupply-definition.kore +++ b/test/regression-evm/test-totalSupply-definition.kore @@ -345,9 +345,9 @@ module VERIFICATION symbol Lbl'Hash'asInteger'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asInteger%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asInteger"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,20,349,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'Hash'asWord'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%c#asWord%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("#asWord"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(345,20,345,71)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("asWord"), terminals{}("1101"), total{}()] symbol Lbl'Hash'asmTxPrefix'LParUndsRParUnds'EVM-TYPES'Unds'TxType'Unds'Int{}(SortInt{}) : SortTxType{} [format{}("%c#asmTxPrefix%r %c(%r %1 %c)%r"), function{}(), klabel{}("#asmTxPrefix"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(453,23,453,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("#blockHashHeaderBaseFeeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("#blockHashHeaderBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("#blockHashHeaderWithdrawalsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBaseFeeBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,205)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBaseFeeBytes"), terminals{}("1101010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,191)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderBytes"), terminals{}("11010101010101010101010101010101")] + symbol Lbl'Hash'blockHashHeaderWithdrawalsBytes{}(SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}, SortBytes{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,20,69,216)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("#blockHashHeaderWithdrawalsBytes"), terminals{}("110101010101010101010101010101010101")] symbol Lbl'Hash'blockhash'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'List'Unds'Int'Unds'Int'Unds'Int{}(SortList{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockhash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), klabel{}("#blockhash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,20,1001,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101010101")] symbol Lbl'Hash'bloomFilter'LParUndsRParUnds'EVM'Unds'Bytes'Unds'List{}(SortList{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c)%r"), function{}(), klabel{}("#bloomFilter"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(679,22,679,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lbl'Hash'bloomFilter'LParUndsCommUndsRParUnds'EVM'Unds'Bytes'Unds'List'Unds'Int{}(SortList{}, SortInt{}) : SortBytes{} [format{}("%c#bloomFilter%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("#bloomFilterAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(680,22,680,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -572,16 +572,16 @@ module VERIFICATION hooked-symbol Lbl'Stop'AccountCellMap{}() : SortAccountCellMap{} [format{}("%c.AccountCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'Account'Unds'EVM-TYPES'Unds'Account{}() : SortAccount{} [constructor{}(), format{}("%c.Account%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(387,24,387,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [format{}("%c.Bytes%r"), function{}(), functional{}(), hook{}("BYTES.empty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2003,20,2003,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), klabel{}(".List{\"JSONs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), userList{}("*")] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [constructor{}(), format{}("%c.JSONs%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".List{\"JSONs\"}"), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs'QuotRBraUnds'EventArgs{}() : SortEventArgs{} [constructor{}(), format{}("%c.EventArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"eventArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs'QuotRBraUnds'TypedArgs{}() : SortTypedArgs{} [constructor{}(), format{}("%c.TypedArgs%r"), functional{}(), injective{}(), klabel{}(".List{\"typedArgs\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("1"), userList{}("*")] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'HASHED-LOCATIONS'Unds'IntList'Unds'Int'Unds'IntList'QuotRBraUnds'IntList{}() : SortIntList{} [constructor{}(), format{}("%c.IntList%r"), functional{}(), injective{}(), klabel{}(".List{\"intList\"}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,24,66,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), smtlib{}("intList"), terminals{}("1"), userList{}("*")] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] symbol Lbl'Stop'MerkleTree'Unds'SERIALIZATION'Unds'MerkleTree{}() : SortMerkleTree{} [constructor{}(), format{}("%c.MerkleTree%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(434,27,434,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol Lbl'Stop'MessageCellMap{}() : SortMessageCellMap{} [format{}("%c.MessageCellMap%r"), function{}(), hook{}("MAP.unit"), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'NoOpCode'Unds'EVM'Unds'MaybeOpCode{}() : SortMaybeOpCode{} [constructor{}(), format{}("%c.NoOpCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(280,28,280,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'Stop'StatusCode'Unds'NETWORK'Unds'StatusCode{}() : SortStatusCode{} [constructor{}(), format{}("%c.StatusCode%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/network.md)"), priorities{}(), right{}(), terminals{}("1")] symbol Lbl'Stop'StringBuffer'Unds'STRING-BUFFER-IN-K'Unds'StringBuffer{}() : SortStringBuffer{} [format{}("%c.StringBuffer%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1930,27,1930,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), total{}()] symbol Lbl'Stop'TxType'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%c.TxType%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,23,441,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -695,14 +695,14 @@ module VERIFICATION symbol LblAccountCellMapKey{}(SortAccountCell{}) : SortAcctIDCell{} [format{}("%cAccountCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblBALANCE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBALANCE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1131,26,1131,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBASEFEE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cBASEFEE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,69,948,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), klabel{}("BERLIN_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBERLIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,25,292,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), symbol'Kywd'{}("BERLIN_EVM"), terminals{}("1")] symbol LblBLAKE2F'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cBLAKE2F%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,30,1788,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblBLOCKHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cBLOCKHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(990,26,990,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblBN128Add'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'G1Point{}(SortG1Point{}, SortG1Point{}) : SortG1Point{} [format{}("%cBN128Add%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128add"), klabel{}("BN128Add"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,24,103,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128AtePairing'LParUndsCommUndsRParUnds'KRYPTO'Unds'Bool'Unds'List'Unds'List{}(SortList{}, SortList{}) : SortBool{} [format{}("%cBN128AtePairing%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128ate"), klabel{}("BN128AtePairing"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,21,107,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBN128Mul'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'Int{}(SortG1Point{}, SortInt{}) : SortG1Point{} [format{}("%cBN128Mul%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("KRYPTO.bn128mul"), klabel{}("BN128Mul"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblBYTE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cBYTE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,27,909,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), klabel{}("BYZANTIUM_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cBYZANTIUM%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(213,25,213,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), symbol'Kywd'{}("BYZANTIUM_EVM"), terminals{}("1")] hooked-symbol LblBase2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortString{} [format{}("%cBase2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.base2string"), klabel{}("Base2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,21,1812,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblBlake2Compress'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cBlake2Compress%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.blake2compress"), klabel{}("Blake2Compress"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,106)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblBool2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Bool{}(SortBool{}) : SortString{} [format{}("%cBool2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("Bool2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1762,21,1762,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -719,7 +719,7 @@ module VERIFICATION symbol LblCODECOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,28,984,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCODESIZE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(979,38,979,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCOINBASE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cCOINBASE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,28,956,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), klabel{}("CONSTANTINOPLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cCONSTANTINOPLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), symbol'Kywd'{}("CONSTANTINOPLE_EVM"), terminals{}("1")] symbol LblCREATE2'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cCREATE2%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1599,28,1599,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCREATE'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cCREATE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1572,28,1572,36)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblCaddraccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCaddraccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Caddraccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Caddraccess"), terminals{}("110101"), total{}()] @@ -741,7 +741,7 @@ module VERIFICATION symbol LblCsstore'LParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int'Unds'Int'Unds'Int{}(SortSchedule{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cCsstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), functional{}(), klabel{}("Csstore"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,20,107,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Csstore"), terminals{}("1101010101"), total{}()] symbol LblCstorageaccess'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [format{}("%cCstorageaccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cstorageaccess"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cstorageaccess"), terminals{}("110101"), total{}()] symbol LblCxfer'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int{}(SortSchedule{}, SortInt{}) : SortInt{} [format{}("%cCxfer%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("Cxfer"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,20,111,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("gas_Cxfer"), terminals{}("110101"), total{}()] - symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), klabel{}("DEFAULT_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cDEFAULT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,90)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), symbol'Kywd'{}("DEFAULT_EVM"), terminals{}("1")] symbol LblDELEGATECALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cDELEGATECALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1432,26,1432,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIFFICULTY'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cDIFFICULTY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,66,956,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblDIV'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cDIV%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,51,890,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -779,7 +779,7 @@ module VERIFICATION symbol LblEXTCODECOPY'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [constructor{}(), format{}("%cEXTCODECOPY%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1167,28,1167,41)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEXTCODEHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODEHASH%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1153,26,1153,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblEXTCODESIZE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cEXTCODESIZE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1142,26,1142,39)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), klabel{}("FRONTIER_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cFRONTIER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(153,25,153,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), symbol'Kywd'{}("FRONTIER_EVM"), terminals{}("1")] hooked-symbol LblFloat2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float{}(SortFloat{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.float2string"), klabel{}("Float2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,21,1789,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.floatFormat"), klabel{}("FloatFormat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1790,21,1790,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblG'StarLParUndsCommUndsCommUndsCommUndsRParUnds'GAS-FEES'Unds'Gas'Unds'Gas'Unds'Int'Unds'Int'Unds'Schedule{}(SortGas{}, SortInt{}, SortInt{}, SortSchedule{}) : SortGas{} [format{}("%cG*%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(228,20,228,76)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("1101010101")] @@ -857,38 +857,38 @@ module VERIFICATION symbol LblGwarmstorageread'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGwarmstorageread%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,129,49,147)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzero'Unds'SCHEDULE'Unds'ScheduleConst{}() : SortScheduleConst{} [constructor{}(), format{}("%cGzero%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,30,43,37)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblGzerovaluenewaccountgas'Unds'SCHEDULE'Unds'ScheduleFlag{}() : SortScheduleFlag{} [constructor{}(), format{}("%cGzerovaluenewaccountgas%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,102,26,127)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), klabel{}("HOMESTEAD_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cHOMESTEAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,25,164,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), symbol'Kywd'{}("HOMESTEAD_EVM"), terminals{}("1")] symbol LblHPEncodeAux'LParUndsRParUnds'SERIALIZATION'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cHPEncodeAux%r %c(%r %1 %c)%r"), function{}(), klabel{}("HPEncodeAux"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(564,20,564,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblID'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1714,30,1714,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblINVALID'Unds'EVM'Unds'InvalidOp{}() : SortInvalidOp{} [constructor{}(), format{}("%cINVALID%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,26,829,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), klabel{}("ISTANBUL_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cISTANBUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(258,25,258,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), symbol'Kywd'{}("ISTANBUL_EVM"), terminals{}("1")] symbol LblISZERO'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cISZERO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,26,885,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Endianness'Unds'Signedness{}(SortInt{}, SortEndianness{}, SortSignedness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("Int2BytesNoLen"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2054,20,2054,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("BYTES.int2bytes"), klabel{}("Int2Bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2053,20,2053,100)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.int2string"), klabel{}("Int2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1811,21,1811,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblJSON2String'LParUndsRParUnds'JSON'Unds'String'Unds'JSON{}(SortJSON{}) : SortString{} [format{}("%cJSON2String%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.json2string"), klabel{}("JSON2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,23,43,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), klabel{}("JSONEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), klabel{}("JSONList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), klabel{}("JSONObject"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("101")] - symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), klabel{}("JSONnull"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("JSONs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), userList{}("*")] + symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONEntry"), terminals{}("010")] + symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c[%r %1 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONList"), terminals{}("101")] + symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [constructor{}(), format{}("%c{%r %1 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONObject"), terminals{}("101")] + symbol LblJSONnull{}() : SortJSON{} [constructor{}(), format{}("%cnull%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONnull"), terminals{}("1")] + symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), symbol'Kywd'{}("JSONs"), terminals{}("010"), userList{}("*")] symbol LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cJUMPDEST%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1018,28,1018,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMPI'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cJUMPI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1033,27,1033,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblJUMP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cJUMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,26,1022,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblKeccak256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cKeccak256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256"), klabel{}("Keccak256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblKeccak256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cKeccak256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256raw"), klabel{}("Keccak256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,22,48,104)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblLOG'LParUndsRParUnds'EVM'Unds'LogOp'Unds'Int{}(SortInt{}) : SortLogOp{} [constructor{}(), format{}("%cLOG%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("LOG"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1113,22,1113,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), klabel{}("LONDON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cLONDON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,25,322,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), symbol'Kywd'{}("LONDON_EVM"), terminals{}("1")] symbol LblLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(926,27,926,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblLegacyProtectedTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}, SortInt{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyProtectedTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c,%r chainId: %7 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyProtectedTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,29,463,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101010101010101")] symbol LblLegacyTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'Bytes{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}) : SortLegacyTx{} [constructor{}(), format{}("%cLegacyTxData%r %c(... %r nonce: %1 %c,%r gasPrice: %2 %c,%r gasLimit: %3 %c,%r to: %4 %c,%r value: %5 %c,%r data: %6 %c)%r"), functional{}(), injective{}(), klabel{}("LegacyTxData"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,29,462,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("11010101010101")] symbol LblLegacy'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [constructor{}(), format{}("%cLegacy%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,23,442,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1")] hooked-symbol LblList2Set'LParUndsRParUnds'COLLECTIONS'Unds'Set'Unds'List{}(SortList{}) : SortSet{} [format{}("%cList2Set%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.list2set"), klabel{}("List2Set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] symbol LblM3'Coln'2048'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%cM3:2048%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(698,20,698,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), klabel{}("MERGE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblMERGE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cMERGE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,25,344,84)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_MERGE"), symbol'Kywd'{}("MERGE_EVM"), terminals{}("1")] symbol LblMLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cMLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(864,26,864,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMODEXP'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cMODEXP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1720,30,1720,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,67,890,72)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -897,8 +897,8 @@ module VERIFICATION symbol LblMSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(869,27,869,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMULMOD'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [constructor{}(), format{}("%cMULMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(904,39,904,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblMUL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cMUL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,35,890,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] symbol LblMerkleBranch'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'Map'Unds'String{}(SortMap{}, SortString{}) : SortMerkleTree{} [constructor{}(), format{}("%cMerkleBranch%r %c(%r %1 %c,%r %2 %c)%r"), functional{}(), injective{}(), klabel{}("MerkleBranch"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(435,27,435,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblMerkleCheck'LParUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree{}(SortMerkleTree{}) : SortMerkleTree{} [format{}("%cMerkleCheck%r %c(%r %1 %c)%r"), function{}(), klabel{}("MerkleCheck"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(508,27,508,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblMerkleDelete'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree'Unds'Bytes{}(SortMerkleTree{}, SortBytes{}) : SortMerkleTree{} [format{}("%cMerkleDelete%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("MerkleDelete"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -913,12 +913,12 @@ module VERIFICATION hooked-symbol LblMessageCellMap'Coln'in'Unds'keys{}(SortMsgIDCell{}, SortMessageCellMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), priorities{}(), right{}(), terminals{}("01101"), total{}()] hooked-symbol LblMessageCellMapItem{}(SortMsgIDCell{}, SortMessageCell{}) : SortMessageCellMap{} [format{}("%2"), function{}(), hook{}("MAP.element"), left{}(), priorities{}(), right{}(), terminals{}("110101")] symbol LblMessageCellMapKey{}(SortMessageCell{}) : SortMsgIDCell{} [format{}("%cMessageCellMapKey%r %c(%r %1 %c)%r"), function{}(), functional{}(), left{}(), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), klabel{}("NORMAL"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblNORMAL{}() : SortMode{} [constructor{}(), format{}("%cNORMAL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("NORMAL"), terminals{}("1")] symbol LblNOT'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cNOT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(885,37,885,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblNUMBER'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cNUMBER%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,55,956,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblORIGIN'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cORIGIN%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(964,40,964,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPC'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPC%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,28,948,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), klabel{}("PETERSBURG_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cPETERSBURG%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(246,25,246,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), symbol'Kywd'{}("PETERSBURG_EVM"), terminals{}("1")] symbol LblPOP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cPOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(840,26,840,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPREVRANDAO'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cPREVRANDAO%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,81,956,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblPUSH'LParUndsRParUnds'EVM'Unds'PushOp'Unds'Int{}(SortInt{}) : SortPushOp{} [constructor{}(), format{}("%cPUSH%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("PUSH"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(850,23,850,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -942,23 +942,23 @@ module VERIFICATION symbol LblSGT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSGT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,35,932,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA256'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [constructor{}(), format{}("%cSHA256%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1702,30,1702,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHA3'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHA3%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,27,937,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), klabel{}("SHANGHAI_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSHANGHAI'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSHANGHAI%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(358,25,358,93)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SHANGHAI"), symbol'Kywd'{}("SHANGHAI_EVM"), terminals{}("1")] symbol LblSHL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,27,914,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSHR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSHR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,35,914,40)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSIGNEXTEND'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSIGNEXTEND%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(909,36,909,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [constructor{}(), format{}("%cSLOAD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,26,1186,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSLT%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,27,932,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSMOD%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(899,36,899,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), klabel{}("SPURIOUS_DRAGON_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cSPURIOUS_DRAGON%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(197,25,197,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), symbol'Kywd'{}("SPURIOUS_DRAGON_EVM"), terminals{}("1")] symbol LblSSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSSTORE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1196,27,1196,35)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTATICCALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [constructor{}(), format{}("%cSTATICCALL%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1446,26,1446,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSTOP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cSTOP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,28,1047,34)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSUB'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cSUB%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(890,43,890,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblSWAP'LParUndsRParUnds'EVM'Unds'StackOp'Unds'Int{}(SortInt{}) : SortStackOp{} [constructor{}(), format{}("%cSWAP%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("SWAP"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(844,38,844,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSet2List'LParUndsRParUnds'COLLECTIONS'Unds'List'Unds'Set{}(SortSet{}) : SortList{} [format{}("%cSet2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.set2list"), klabel{}("Set2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,19,1049,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] hooked-symbol LblSha256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256"), klabel{}("Sha256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,98)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha256raw'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cSha256raw%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256raw"), klabel{}("Sha256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha3'Unds'256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha3_256%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,96)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -975,24 +975,24 @@ module VERIFICATION hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.string2int"), klabel{}("String2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,21,1810,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblString2JSON'LParUndsRParUnds'JSON'Unds'JSON'Unds'String{}(SortString{}) : SortJSON{} [format{}("%cString2JSON%r %c(%r %1 %c)%r"), function{}(), hook{}("JSON.string2json"), klabel{}("String2JSON"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,21,45,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblStringBuffer2String'LParUndsRParUnds'STRING-BUFFER-IN-K'Unds'String'Unds'StringBuffer{}(SortStringBuffer{}) : SortString{} [format{}("%cStringBuffer2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("StringBuffer2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1933,21,1933,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), klabel{}("TANGERINE_WHISTLE_EVM"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}(), terminals{}("1")] + symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [constructor{}(), format{}("%cTANGERINE_WHISTLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,25,174,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), symbol'Kywd'{}("TANGERINE_WHISTLE_EVM"), terminals{}("1")] symbol LblTIMESTAMP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [constructor{}(), format{}("%cTIMESTAMP%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,41,956,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblUNDEFINED'LParUndsRParUnds'EVM'Unds'InvalidOp'Unds'Int{}(SortInt{}) : SortInvalidOp{} [constructor{}(), format{}("%cUNDEFINED%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(829,38,829,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), klabel{}("VMTESTS"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblVMTESTS{}() : SortMode{} [constructor{}(), format{}("%cVMTESTS%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,21,186,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), symbol'Kywd'{}("VMTESTS"), terminals{}("1")] symbol LblWordStack2List'LParUndsRParUnds'EVM-TYPES'Unds'List'Unds'WordStack{}(SortWordStack{}) : SortList{} [format{}("%cWordStack2List%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("WordStack2List"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,21,311,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LblXOR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [constructor{}(), format{}("%cXOR%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(920,45,920,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] symbol Lbl'UndsPerc'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,20,92,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPerc'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,20,121,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsAnd-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c&Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(165,20,165,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsLParUndsCommUndsRParUnds'SERIALIZATION'Unds'LengthPrefix'Unds'LengthPrefixType'Unds'Int'Unds'Int{}(SortLengthPrefixType{}, SortInt{}, SortInt{}) : SortLengthPrefix{} [constructor{}(), format{}("%1 %c(%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(402,29,402,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), terminals{}("010101")] symbol Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c*Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,20,17,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsStar'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c*Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,20,89,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [format{}("%1 %c+Bytes%r %2"), function{}(), functional{}(), hook{}("BYTES.concat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2150,20,2150,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c+Gas%r %2"), function{}(), functional{}(), left{}(Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,20,20,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] symbol Lbl'UndsPlus'JSONs'UndsUnds'JSON-EXT'Unds'JSONs'Unds'JSONs'Unds'JSONs{}(SortJSONs{}, SortJSONs{}) : SortJSONs{} [format{}("%1 %c+JSONs%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/json-rpc.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}(SortStringBuffer{}, SortString{}) : SortStringBuffer{} [avoid{}(), format{}("%1 %c+String%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1931,27,1931,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [format{}("%1 %c+String%r %2"), function{}(), functional{}(), hook{}("STRING.concat"), latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1701,21,1701,135)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] @@ -1000,64 +1000,64 @@ module VERIFICATION symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs{}(SortEventArg{}, SortEventArgs{}) : SortEventArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("eventArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(785,26,785,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs{}(SortTypedArg{}, SortTypedArgs{}) : SortTypedArgs{} [constructor{}(), format{}("%1 %c,%r %2"), functional{}(), injective{}(), klabel{}("typedArgs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,26,137,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), terminals{}("010"), userList{}("*")] symbol Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c-Gas%r %2"), function{}(), functional{}(), left{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,20,21,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds'-Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortGas{} [format{}("%1 %c/Gas%r %2"), function{}(), left{}(Lbl'UndsStar'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsSlsh'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,20,18,45)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(Lbl'Unds'-Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}(),Lbl'UndsPlus'Gas'UndsUnds'GAS-SYNTAX'Unds'Gas'Unds'Gas'Unds'Gas{}()), right{}(), terminals{}("010")] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_/Int_"), terminals{}("010")] symbol Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,20,91,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsSlsh'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/sWord%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,20,120,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c:%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,22,236,46)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortWordStack{} [constructor{}(), format{}("%1 %c:%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,26,231,58)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("_WS_"), terminals{}("010")] symbol Lbl'Unds-LT--LT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<>%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,21,23,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] symbol Lbl'Unds-LT-Eqls'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c<=Gas%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,21,24,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), klabel{}("_<=Int_"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.le"), latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,19,1304,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("<="), symbol'Kywd'{}("_<=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [format{}("%1 %c<=Map%r %2"), function{}(), functional{}(), hook{}("MAP.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [format{}("%1 %c<=Set%r %2"), function{}(), functional{}(), hook{}("SET.inclusion"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(786,19,786,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-LT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c<=String%r %2"), function{}(), functional{}(), hook{}("STRING.le"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1846,19,1846,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(136,20,136,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-LT-'Gas'UndsUnds'GAS-SYNTAX'Unds'Bool'Unds'Gas'Unds'Gas{}(SortGas{}, SortGas{}) : SortBool{} [format{}("%1 %c%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,20,40,68)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/schedule.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), klabel{}("_=/=Bool_"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), klabel{}("_=/=Int_"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), klabel{}("_=/=K_"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.ne"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1109,19,1109,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c=/=Int%r %2"), function{}(), functional{}(), hook{}("INT.ne"), latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1309,19,1309,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c=/=K%r %2"), function{}(), functional{}(), group{}("notEqualEqualK"), hook{}("KEQUAL.ne"), latex{}("{#1}\\mathrel{\\neq_K}{#2}"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2258,19,2258,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("distinct"), symbol'Kywd'{}("_=/=K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c=/=String%r %2"), function{}(), functional{}(), hook{}("STRING.ne"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1842,19,1842,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), klabel{}("_==Bool_"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), klabel{}("_==Int_"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), klabel{}("_==K_"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [comm{}(), format{}("%1 %c==Bool%r %2"), function{}(), functional{}(), hook{}("BOOL.eq"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1108,19,1108,126)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Bool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [comm{}(), format{}("%1 %c==Int%r %2"), function{}(), functional{}(), hook{}("INT.eq"), latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1308,19,1308,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [comm{}(), format{}("%1 %c==K%r %2"), function{}(), functional{}(), group{}("equalEqualK"), hook{}("KEQUAL.eq"), latex{}("{#1}\\mathrel{=_K}{#2}"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2257,19,2257,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("="), symbol'Kywd'{}("_==K_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [comm{}(), format{}("%1 %c==String%r %2"), function{}(), functional{}(), hook{}("STRING.eq"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1841,19,1841,85)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsEqlsEqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c==Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(138,20,138,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>=String%r %2"), function{}(), functional{}(), hook{}("STRING.ge"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1848,19,1848,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>=Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,20,137,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Byte%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(584,20,584,47)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] symbol Lbl'Unds-GT--GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,20,168,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT--GT-'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>sWord%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(169,20,169,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>String%r %2"), function{}(), functional{}(), hook{}("STRING.gt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1847,19,1847,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'Unds-GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(135,20,135,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'AccountCellMap'Unds'{}(SortAccountCellMap{}, SortAccountCellMap{}) : SortAccountCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblAccountCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'AccountCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] hooked-symbol Lbl'Unds'MessageCellMap'Unds'{}(SortMessageCellMap{}, SortMessageCellMap{}) : SortMessageCellMap{} [assoc{}(), avoid{}(), cellCollection{}(), comm{}(), element{}(LblMessageCellMapItem{}()), format{}("%1 %2"), function{}(), hook{}("MAP.concat"), left{}(), priorities{}(), right{}(), terminals{}("00"), unit{}(Lbl'Stop'MessageCellMap{}()), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortBytes{}, SortInt{}, SortBytes{}) : SortBytes{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), klabel{}("mapWriteRange"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,22,324,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'WordStack'Unds'WordStack'Unds'Int'Unds'Int{}(SortWordStack{}, SortInt{}, SortInt{}) : SortWordStack{} [format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,26,271,74)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), total{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("BYTES.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2076,20,2076,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("BYTES.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2085,18,2085,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101")] symbol Lbl'UndsLSqBUndsRSqBUnds'EVM-TYPES'Unds'Int'Unds'WordStack'Unds'Int{}(SortWordStack{}, SortInt{}) : SortInt{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(265,20,265,59)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("0101"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] symbol Lbl'UndsXor-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Word%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,20,108,52)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'StackOp'Unds'WordStack{}(SortStackOp{}, SortWordStack{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(454,27,454,44)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int{}(SortUnStackOp{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,27,440,42)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00")] @@ -1067,138 +1067,138 @@ module VERIFICATION symbol Lbl'UndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'QuadStackOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortQuadStackOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(443,27,443,54)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallSixOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallSixOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(462,27,462,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("0000000")] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [constructor{}(), format{}("%1 %2 %3 %4 %5 %6 %7 %8"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(463,27,463,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("00000000")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds'in'UndsUnds'EVM-TYPES'Unds'Bool'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,21,290,50)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010")] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] symbol Lbl'Unds's'-LT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cs%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] symbol Lbl'UndsPipe'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c|Word%r %2"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,20,164,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), klabel{}("abi_selector"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_address"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_array"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes1"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes10"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes11"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes12"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes13"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes14"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes15"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes17"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes18"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes19"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes2"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes20"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes21"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes22"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes23"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes25"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes26"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes27"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes28"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes29"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes3"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes30"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes31"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes4"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes5"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes6"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes7"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_bytes9"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_int96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_string"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint104"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint112"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint120"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint128"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint136"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint144"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint152"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint16"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint160"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint168"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint176"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint184"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint192"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint200"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint208"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint216"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint224"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint232"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint24"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint240"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint248"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint32"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint40"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint48"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint56"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint64"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint72"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint8"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint80"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint88"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] - symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("abi_type_uint96"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [alias'Kywd'{}(), format{}("%cselector%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,20,821,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_selector"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#address%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_address"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [constructor{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,25,134,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_array"), terminals{}("11010101")] + symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(131,25,131,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bool"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(132,25,132,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes1{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes1%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(99,25,99,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes1"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes10{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes10%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,25,108,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes10"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes11{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes11%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,25,109,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes11"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes12{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes12%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,25,110,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes12"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes13{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes13%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,25,111,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes13"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes14{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes14%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,25,112,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes14"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes15{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes15%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,25,113,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes15"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,25,114,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes17{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes17%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(115,25,115,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes17"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes18{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes18%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,25,116,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes18"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes19{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes19%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,25,117,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes19"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes2{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes2%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,25,100,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes2"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes20{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes20%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(118,25,118,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes20"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes21{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes21%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(119,25,119,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes21"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes22{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes22%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,25,120,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes22"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes23{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes23%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,25,121,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes23"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,25,122,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes25{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes25%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,25,123,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes25"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes26{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes26%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,25,124,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes26"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes27{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes27%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(125,25,125,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes27"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes28{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes28%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(126,25,126,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes28"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes29{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes29%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(127,25,127,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes29"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes3{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes3%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(101,25,101,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes3"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes30{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes30%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(128,25,128,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes30"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes31{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes31%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(129,25,129,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes31"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(130,25,130,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(102,25,102,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes4"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes5{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes5%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,25,103,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes5"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes6{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes6%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,25,104,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes6"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes7{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes7%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,25,105,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes7"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,25,106,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'bytes9{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#bytes9%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,25,107,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_bytes9"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,25,84,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,25,83,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,25,78,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,25,77,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,25,76,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,25,75,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(94,25,94,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(93,25,93,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,25,98,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,25,89,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,25,88,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'int96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#int96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_int96"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [constructor{}(), format{}("%c#string%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(133,25,133,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_string"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint104"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint112"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint120"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint128"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint136"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint144"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint152"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint16"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint160"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint168"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint176"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint184"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint192"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint200"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint208"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint216"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint224"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint232"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint24"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint240"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint248"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint256"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint32"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint40"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint48"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint56"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint64"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint72"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint8"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint80"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint88"), terminals{}("1101")] + symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [constructor{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/abi.md)"), priorities{}(), right{}(), symbol'Kywd'{}("abi_type_uint96"), terminals{}("1101")] symbol Lblabs'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabs%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("abs"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,20,46,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] - symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), klabel{}("accountEmpty"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101"), total{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), klabel{}("bigEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] - symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), klabel{}("binRuntime"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,21,209,110)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), symbol'Kywd'{}("accountEmpty"), terminals{}("11010101"), total{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cBE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2014,25,2014,62)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("bigEndianBytes"), terminals{}("1")] + symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,22,30,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("binRuntime"), terminals{}("1101")] symbol Lblbit'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("bit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(187,20,187,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), klabel{}("blockHeaderHash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101010101010101010101010101")] - symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), klabel{}("blockHeaderHashBaseFee"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101010101010101010101010101010101")] - symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), klabel{}("blockHeaderHashWithdrawals"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101010101010101010101010101010101")] + symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,175)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHash"), terminals{}("11010101010101010101010101010101")] + symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashBaseFee"), terminals{}("1101010101010101010101010101010101")] + symbol LblblockHeaderHashWithdrawals{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c,%r %17 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,20,68,197)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/serialization.md)"), priorities{}(), right{}(), symbol'Kywd'{}("blockHeaderHashWithdrawals"), terminals{}("110101010101010101010101010101010101")] symbol Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool{}(SortBool{}) : SortInt{} [format{}("%cbool2Word%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("bool2Word"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), smtlib{}("bool2Word"), terminals{}("1101"), total{}()] symbol Lblbyte'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cbyte%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("byte"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(188,20,188,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblcategoryChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%ccategoryChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.category"), klabel{}("categoryChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1858,21,1858,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1206,10 +1206,10 @@ module VERIFICATION hooked-symbol Lblchoice'LParUndsRParUnds'SET'Unds'KItem'Unds'Set{}(SortSet{}) : SortKItem{} [format{}("%cchoice%r %c(%r %1 %c)%r"), function{}(), hook{}("SET.choice"), klabel{}("Set:choice"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(804,20,804,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblchop'LParUndsRParUnds'WORD'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cchop%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("chop"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(575,20,575,64)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), smtlib{}("chop"), terminals{}("1101"), total{}()] hooked-symbol LblchrChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cchrChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.chr"), klabel{}("chrChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1718,21,1718,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), klabel{}("contract_access_field"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010")] - symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("contract_access_hash"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("110101")] - symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), klabel{}("contract_access_index"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), klabel{}("contract_access_loc"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c.%r %2"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_field"), terminals{}("010")] + symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_hash"), terminals{}("110101")] + symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [constructor{}(), format{}("%1 %c[%r %2 %c]%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_index"), terminals{}("0101")] + symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [format{}("%c#loc%r %c(%r %1 %c)%r"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/hashed-locations.md)"), priorities{}(), right{}(), symbol'Kywd'{}("contract_access_loc"), terminals{}("1101")] hooked-symbol LblcountAllOccurrences'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortInt{} [format{}("%ccountAllOccurrences%r %c(... %r haystack: %1 %c,%r needle: %2 %c)%r"), function{}(), functional{}(), hook{}("STRING.countAllOccurrences"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1831,18,1831,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol LbldecodeBytes'LParUndsCommUndsRParUnds'BYTES-STRING-ENCODE'Unds'String'Unds'String'Unds'Bytes{}(SortString{}, SortBytes{}) : SortString{} [format{}("%cdecodeBytes%r %c(... %r encoding: %1 %c,%r contents: %2 %c)%r"), function{}(), hook{}("BYTES.decodeBytes"), klabel{}("decodeBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1986,23,1986,109)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LbldirectionalityChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cdirectionalityChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.directionality"), klabel{}("directionalityChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1859,21,1859,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1223,7 +1223,7 @@ module VERIFICATION symbol LblgetBloomFilterBit'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [format{}("%cgetBloomFilterBit%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), klabel{}("getBloomFilterBit"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,20,706,60)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblgetExitCode{}(SortGeneratedTopCell{}) : SortInt{} [format{}("%cgetExitCode%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] symbol LblgetGeneratedCounterCell{}(SortGeneratedTopCell{}) : SortGeneratedCounterCell{} [format{}("%cgetGeneratedCounterCell%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), right{}(), terminals{}("1101")] - symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("infGas"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinfGas{}(SortInt{}) : SortGas{} [constructor{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,20,60,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/gas.md)"), priorities{}(), right{}(), smtlib{}("infGas"), symbol'Kywd'{}("infGas"), terminals{}("1101")] symbol LblinitAccessedAccountsCell{}() : SortAccessedAccountsCell{} [format{}("%cinitAccessedAccountsCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccessedStorageCell{}() : SortAccessedStorageCell{} [format{}("%cinitAccessedStorageCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitAccountCell{}() : SortAccountCellMap{} [format{}("%cinitAccountCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1234,7 +1234,7 @@ module VERIFICATION symbol LblinitBlockCell{}() : SortBlockCell{} [format{}("%cinitBlockCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockNonceCell{}() : SortBlockNonceCell{} [format{}("%cinitBlockNonceCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitBlockhashesCell{}() : SortBlockhashesCell{} [format{}("%cinitBlockhashesCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), klabel{}("initBytecode"), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101")] + symbol LblinitBytecode{}(SortContract{}) : SortBytes{} [alias'Kywd'{}(), format{}("%c#initBytecode%r %c(%r %1 %c)%r"), function{}(), left{}(), no-evaluators{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,22,31,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/edsl.md)"), priorities{}(), right{}(), symbol'Kywd'{}("initBytecode"), terminals{}("1101")] symbol LblinitCallDataCell{}() : SortCallDataCell{} [format{}("%cinitCallDataCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallDepthCell{}() : SortCallDepthCell{} [format{}("%cinitCallDepthCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblinitCallGasCell{}() : SortCallGasCell{} [format{}("%cinitCallGasCell%r"), function{}(), initializer{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] @@ -1573,7 +1573,7 @@ module VERIFICATION hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("BYTES.length"), klabel{}("lengthBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2140,18,2140,95)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), total{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%clengthString%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.length"), klabel{}("lengthString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1709,18,1709,80)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol LbllistAsBytes'LParUndsRParUnds'EVM'Unds'List'Unds'List{}(SortList{}) : SortList{} [format{}("%clistAsBytes%r %c(%r %1 %c)%r"), function{}(), klabel{}("listAsBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,21,687,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] - symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), klabel{}("littleEndianBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LbllittleEndianBytes{}() : SortEndianness{} [constructor{}(), format{}("%cLE%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,25,2013,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("littleEndianBytes"), terminals{}("1")] symbol Lbllog256Int'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog256Int%r %c(%r %1 %c)%r"), function{}(), klabel{}("log256Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,20,79,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol Lbllog2Int'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%clog2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.log2"), klabel{}("log2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1280,18,1280,75)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblmakeList'LParUndsCommUndsRParUnds'LIST'Unds'List'Unds'Int'Unds'KItem{}(SortInt{}, SortKItem{}) : SortList{} [format{}("%cmakeList%r %c(... %r length: %1 %c,%r value: %2 %c)%r"), function{}(), hook{}("LIST.make"), klabel{}("makeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(974,19,974,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] @@ -1833,7 +1833,7 @@ module VERIFICATION symbol LblnoValueCell{}() : SortValueCellOpt{} [cellOptAbsent{}("ValueCell"), constructor{}(), format{}("%cnoValueCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWithdrawalsRootCell{}() : SortWithdrawalsRootCellOpt{} [cellOptAbsent{}("WithdrawalsRootCell"), constructor{}(), format{}("%cnoWithdrawalsRootCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoWordStackCell{}() : SortWordStackCellOpt{} [cellOptAbsent{}("WordStackCell"), constructor{}(), format{}("%cnoWordStackCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] symbol LblnotMaxUInt128'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt128%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,20,440,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt160'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt160%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,20,441,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] symbol LblnotMaxUInt16'Unds'WORD'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cnotMaxUInt16%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(436,20,436,43)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/word.md)"), priorities{}(), right{}(), terminals{}("1")] @@ -2180,7 +2180,7 @@ module VERIFICATION symbol LblsetBloomFilterBits'LParUndsRParUnds'EVM'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [format{}("%csetBloomFilterBits%r %c(%r %1 %c)%r"), function{}(), klabel{}("setBloomFilterBits"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(702,20,702,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblsgn'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%csgn%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("sgn"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,20,45,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.signExtendBitRange"), klabel{}("signExtendBitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1295,18,1295,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] - symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), klabel{}("signedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cSigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2023,25,2023,63)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("signedBytes"), terminals{}("1")] symbol Lblsignextend'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%csignextend%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), klabel{}("signextend"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(211,20,211,61)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.size"), klabel{}("sizeList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1020,18,1020,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), total{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [format{}("%csize%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("MAP.size"), klabel{}("sizeMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(373,18,373,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] @@ -2189,14 +2189,14 @@ module VERIFICATION hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}(), hook{}("INT.srand"), impure{}(), klabel{}("srandInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1329,16,1329,65)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblsubstrBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [format{}("%csubstrBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("BYTES.substr"), klabel{}("substrBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2097,20,2097,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblsubstrString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'String'Unds'Int'Unds'Int{}(SortString{}, SortInt{}, SortInt{}) : SortString{} [format{}("%csubstrString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), functional{}(), hook{}("STRING.substr"), klabel{}("substrString"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1734,21,1734,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), total{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), klabel{}("unsignedBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1")] + symbol LblunsignedBytes{}() : SortSignedness{} [constructor{}(), format{}("%cUnsigned%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2024,25,2024,67)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("unsignedBytes"), terminals{}("1")] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblword2Bool'LParUndsRParUnds'EVM-TYPES'Unds'Bool'Unds'Int{}(SortInt{}) : SortBool{} [format{}("%cword2Bool%r %c(%r %1 %c)%r"), function{}(), functional{}(), klabel{}("word2Bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,21,35,56)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes{}(SortInt{}, SortList{}, SortBytes{}) : SortSubstateLogEntry{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), functional{}(), injective{}(), klabel{}("logEntry"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(431,33,431,82)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("1010101")] symbol Lbl'LBraUndsPipeUndsRBraUnds'EVM'Unds'Accounts'Unds'AccountsCellFragment'Unds'SubstateCellFragment{}(SortAccountsCellFragment{}, SortSubstateCellFragment{}) : SortAccounts{} [constructor{}(), format{}("%c{%r %1 %c|%r %2 %c}%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,25,229,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm.md)"), priorities{}(), right{}(), terminals{}("10101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] symbol Lbl'Tild'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%c~Word%r %1"), function{}(), functional{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(163,20,163,55)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(evm-semantics/evm-types.md)"), priorities{}(), right{}(), terminals{}("10"), total{}()] // generated axioms diff --git a/test/regression-wasm/test-locals-vdefinition.kore b/test/regression-wasm/test-locals-vdefinition.kore index 860f3386a3..b2ac0766c9 100644 --- a/test/regression-wasm/test-locals-vdefinition.kore +++ b/test/regression-wasm/test-locals-vdefinition.kore @@ -445,9 +445,9 @@ module KWASM-LEMMAS hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), hook{}("BYTES.empty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1716,20,1716,69)"), left{}(), format{}("%c.Bytes%r"), function{}()] hooked-symbol Lbl'Stop'FuncDefCellMap{}() : SortFuncDefCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.FuncDefCellMap%r"), function{}()] hooked-symbol Lbl'Stop'GlobalInstCellMap{}() : SortGlobalInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.GlobalInstCellMap%r"), function{}()] - symbol Lbl'Stop'Identifier{}() : SortOptionalId{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Identifier"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,27,35,58)"), left{}(), format{}("%c%r"), injective{}()] + symbol Lbl'Stop'Identifier{}() : SortOptionalId{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".Identifier"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,27,35,58)"), left{}(), format{}("%c%r"), injective{}()] symbol Lbl'Stop'Int'Unds'WASM-DATA'Unds'OptionalInt{}() : SortOptionalInt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(226,34,226,39)"), left{}(), format{}("%c.Int%r"), injective{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(659,19,659,146)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(659,19,659,146)"), left{}(), format{}("%c.List%r"), function{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Defns'Unds'Defn'Unds'Defns'QuotRBraUnds'Defns{}() : SortDefns{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,27,59,65)"), left{}(), format{}("%c.Defns%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Instrs'Unds'Instr'Unds'Instrs'QuotRBraUnds'Instrs{}() : SortInstrs{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,27,58,65)"), left{}(), format{}("%c.Instrs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts'QuotRBraUnds'Stmts{}() : SortStmts{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,27,60,65)"), left{}(), format{}("%c.Stmts%r"), injective{}()] @@ -455,15 +455,15 @@ module KWASM-LEMMAS symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-DATA-COMMON-SYNTAX'Unds'DataString'Unds'WasmString'Unds'DataString'QuotRBraUnds'DataString{}() : SortDataString{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listWasmString\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,27,54,71)"), left{}(), format{}("%c.DataString%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-DATA-COMMON-SYNTAX'Unds'ElemSegment'Unds'Index'Unds'ElemSegment'QuotRBraUnds'ElemSegment{}() : SortElemSegment{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listIndex\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,28,75,62)"), left{}(), format{}("%c.ElemSegment%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'LocalDecls'Unds'LocalDecl'Unds'LocalDecls'QuotRBraUnds'LocalDecls{}() : SortLocalDecls{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listLocalDecl\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(216,27,216,77)"), left{}(), format{}("%c.LocalDecls%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listInt'QuotRBraUnds'Ints{}() : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listInt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%c.Ints%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listStmt'QuotRBraUnds'EmptyStmts{}() : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%c.EmptyStmts%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listValTypes'QuotRBraUnds'ValTypes{}() : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listValTypes\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%c.ValTypes%r"), injective{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,18,259,128)"), left{}(), format{}("%c.Map%r"), function{}()] + symbol Lbl'Stop'List'LBraQuot'listInt'QuotRBraUnds'Ints{}() : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".List{\"listInt\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%c.Ints%r"), injective{}()] + symbol Lbl'Stop'List'LBraQuot'listStmt'QuotRBraUnds'EmptyStmts{}() : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(".List{\"listStmt\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%c.EmptyStmts%r"), injective{}()] + symbol Lbl'Stop'List'LBraQuot'listValTypes'QuotRBraUnds'ValTypes{}() : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".List{\"listValTypes\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%c.ValTypes%r"), injective{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,18,259,128)"), left{}(), format{}("%c.Map%r"), function{}()] hooked-symbol Lbl'Stop'MemInstCellMap{}() : SortMemInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.MemInstCellMap%r"), function{}()] hooked-symbol Lbl'Stop'ModuleInstCellMap{}() : SortModuleInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.ModuleInstCellMap%r"), function{}()] symbol Lbl'Stop'Mut'Unds'WASM-DATA'Unds'Mut{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(314,20,314,25)"), left{}(), format{}("%c.Mut%r"), injective{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,122)"), left{}(), format{}("%c.Set%r"), function{}()] - symbol Lbl'Stop'String{}() : SortOptionalString{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".String"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,31,1383,65)"), left{}(), format{}("%c.String%r"), injective{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,122)"), left{}(), format{}("%c.Set%r"), function{}()] + symbol Lbl'Stop'String{}() : SortOptionalString{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(".String"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,31,1383,65)"), left{}(), format{}("%c.String%r"), injective{}()] hooked-symbol Lbl'Stop'TabInstCellMap{}() : SortTabInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.TabInstCellMap%r"), function{}()] symbol Lbl'Stop'Type'Unds'WASM-DATA'Unds'Type{}() : SortType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(260,21,260,27)"), left{}(), format{}("%c.Type%r"), injective{}()] symbol Lbl'Stop'ValStack'Unds'WASM-DATA'Unds'ValStack{}() : SortValStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(408,25,408,35)"), left{}(), format{}("%c.ValStack%r"), injective{}()] @@ -566,18 +566,18 @@ module KWASM-LEMMAS hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Bytes"), hook{}("BYTES.int2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1766,20,1766,104)"), left{}(), format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2Float'LParUndsCommUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortFloat{} [latex{}("{\\\\it{}Int2Float}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Float"), hook{}("FLOAT.int2float"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1342,20,1342,131)"), left{}(), format{}("%cInt2Float%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Int2String"), hook{}("STRING.int2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1516,21,1516,103)"), left{}(), format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,20,678,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,19,725,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,19,667,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(282,20,282,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,18,301,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,20,678,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,19,725,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,19,667,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(282,20,282,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,18,301,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol LblMemInstCellMap'Coln'in'Unds'keys{}(SortMAddrCell{}, SortMemInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblMemInstCellMapItem{}(SortMAddrCell{}, SortMemInstCell{}) : SortMemInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] hooked-symbol LblModuleInstCellMap'Coln'in'Unds'keys{}(SortModIdxCell{}, SortModuleInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblModuleInstCellMapItem{}(SortModIdxCell{}, SortModuleInstCell{}) : SortModuleInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Base'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'Int{}(SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("String2Base"), hook{}("STRING.string2base"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1518,21,1518,98)"), left{}(), format{}("%cString2Base%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblString2Bool'LParUndsRParUnds'STRING-COMMON'Unds'Bool'Unds'String{}(SortString{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1473,19,1473,48)"), left{}(), format{}("%cString2Bool%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Bytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'String{}(SortString{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bytes"), hook{}("BYTES.string2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1778,20,1778,88)"), left{}(), format{}("%cString2Bytes%r %c(%r %1 %c)%r"), function{}()] @@ -586,24 +586,24 @@ module KWASM-LEMMAS hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Int"), hook{}("STRING.string2int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1515,21,1515,91)"), left{}(), format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblTabInstCellMap'Coln'in'Unds'keys{}(SortTAddrCell{}, SortTabInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblTabInstCellMapItem{}(SortTAddrCell{}, SortTabInstCell{}) : SortTabInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] - symbol LblWasmInt{}(SortWasmIntToken{}) : SortWasmInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0"), klabel{}("WasmInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,24,81,78)"), left{}(), format{}("%1"), avoid{}(), function{}()] + symbol LblWasmInt{}(SortWasmIntToken{}) : SortWasmInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), symbol'Kywd'{}("WasmInt"), priorities{}(), right{}(), terminals{}("0"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,24,81,78)"), left{}(), format{}("%1"), avoid{}(), function{}()] symbol LblWasmIntToken2Int'LParUndsRParUnds'WASM-TEXT'Unds'Int'Unds'WasmIntToken{}(SortWasmIntToken{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntToken2Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(350,23,350,72)"), left{}(), format{}("%cWasmIntToken2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblWasmIntToken2String'LParUndsRParUnds'WASM-TEXT'Unds'String'Unds'WasmIntToken{}(SortWasmIntToken{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntToken2String"), hook{}("STRING.token2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(348,23,348,111)"), left{}(), format{}("%cWasmIntToken2String%r %c(%r %1 %c)%r"), function{}()] symbol LblWasmIntTokenString2Int'LParUndsRParUnds'WASM-TEXT'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntTokenString2Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,23,349,72)"), left{}(), format{}("%cWasmIntTokenString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.rem roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.rem"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,20,1248,182)"), left{}(Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c%%Float%r %2"), function{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_%Int_"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,18,940,170)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), klabel{}("_&Int_"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,18,951,182)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_%Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,18,940,170)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_&Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,18,951,182)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] symbol Lbl'UndsLPar'elem'UndsRParUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TableSpec'Unds'TableElemType'Unds'ElemSegment{}(SortTableElemType{}, SortElemSegment{}) : SortTableSpec{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("01101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(225,26,225,65)"), left{}(), format{}("%1 %c(%r %celem%r %2 %c)%r"), injective{}()] hooked-symbol Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.mul roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,20,1246,184)"), left{}(Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c*Float%r %2"), function{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), klabel{}("_*Int_"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,18,936,181)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_*Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,18,936,181)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] symbol Lbl'UndsPlusPlusUndsUnds'WASM-DATA'Unds'ValStack'Unds'ValStack'Unds'ValStack{}(SortValStack{}, SortValStack{}) : SortValStack{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(410,25,410,69)"), left{}(), format{}("%1 %c++%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), hook{}("BYTES.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1863,20,1863,89)"), left{}(), format{}("%1 %c+Bytes%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(fp.add roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,20,1250,181)"), left{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c+Float%r %2"), function{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), klabel{}("_+Int_"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,18,945,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_+Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,18,945,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1406,21,1406,139)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), format{}("%1 %c+String%r %2"), function{}()] symbol Lbl'UndsPlusUndsUnds'WASM-DATA'Unds'ValTypes'Unds'ValTypes'Unds'ValTypes{}(SortValTypes{}, SortValTypes{}) : SortValTypes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(267,25,267,68)"), left{}(), format{}("%1 %c+%r %2"), function{}()] hooked-symbol Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(fp.sub roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1251,20,1251,181)"), left{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c-Float%r %2"), function{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), klabel{}("_-Int_"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_-Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,18,322,120)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] symbol Lbl'UndsStopUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'FValType'Unds'LoadOpM{}(SortFValType{}, SortLoadOpM{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,27,106,46)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] symbol Lbl'UndsStopUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'FValType'Unds'StoreOpM{}(SortFValType{}, SortStoreOpM{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,27,104,48)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] @@ -620,50 +620,50 @@ module KWASM-LEMMAS symbol Lbl'UndsStopUndsUndsUndsUnds'WASM-NUMERIC'Unds'Val'Unds'IValType'Unds'IRelOp'Unds'Int'Unds'Int{}(SortIValType{}, SortIRelOp{}, SortInt{}, SortInt{}) : SortVal{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), priorities{}(), right{}(), terminals{}("01000"), klabel{}("intRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,20,324,81)"), left{}(), format{}("%1 %c.%r %2 %3 %4"), function{}()] symbol Lbl'UndsStopUndsUndsUndsUnds'WASM'Unds'Instr'Unds'IValType'Unds'StoreOp'Unds'Int'Unds'Int{}(SortIValType{}, SortStoreOp{}, SortInt{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("01000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,22,953,49)"), left{}(), format{}("%1 %c.%r %2 %3 %4"), injective{}()] hooked-symbol Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.div roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.div"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,20,1247,184)"), left{}(Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c/Float%r %2"), function{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_/Int_"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(939,18,939,172)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_/Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(939,18,939,172)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] symbol Lbl'UndsColnUndsUnds'WASM-DATA'Unds'ValStack'Unds'Val'Unds'ValStack{}(SortVal{}, SortValStack{}) : SortValStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(409,25,409,46)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ll_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shlInt"), terminals{}("010"), klabel{}("_<=Float%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), klabel{}("_>=Int_"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1009,19,1009,176)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>=Int_"), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1009,19,1009,176)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1553,19,1553,82)"), left{}(), format{}("%1 %c>=String%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), klabel{}("_>>Int_"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,18,948,172)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>>Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,18,948,172)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'Float'UndsUnds'FLOAT'Unds'Bool'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fg.gt"), right{}(), terminals{}("010"), hook{}("FLOAT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1325,19,1325,147)"), left{}(Lbl'Unds-GT-'Float'UndsUnds'FLOAT'Unds'Bool'Unds'Float'Unds'Float{}()), format{}("%1 %c>Float%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), klabel{}("_>Int_"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,19,1010,171)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>Int_"), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,19,1010,171)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1552,19,1552,82)"), left{}(), format{}("%1 %c>String%r %2"), function{}()] hooked-symbol Lbl'Unds'FuncDefCellMap'Unds'{}(SortFuncDefCellMap{}, SortFuncDefCellMap{}) : SortFuncDefCellMap{} [unit{}(Lbl'Stop'FuncDefCellMap{}()), element{}(LblFuncDefCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'Unds'GlobalInstCellMap'Unds'{}(SortGlobalInstCellMap{}, SortGlobalInstCellMap{}) : SortGlobalInstCellMap{} [unit{}(Lbl'Stop'GlobalInstCellMap{}()), element{}(LblGlobalInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(651,19,651,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,18,251,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(651,19,651,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,18,251,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'MemInstCellMap'Unds'{}(SortMemInstCellMap{}, SortMemInstCellMap{}) : SortMemInstCellMap{} [unit{}(Lbl'Stop'MemInstCellMap{}()), element{}(LblMemInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'Unds'ModuleInstCellMap'Unds'{}(SortModuleInstCellMap{}, SortModuleInstCellMap{}) : SortModuleInstCellMap{} [unit{}(Lbl'Stop'ModuleInstCellMap{}()), element{}(LblModuleInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'TabInstCellMap'Unds'{}(SortTabInstCellMap{}, SortTabInstCellMap{}) : SortTabInstCellMap{} [unit{}(Lbl'Stop'TabInstCellMap{}()), element{}(LblTabInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), hook{}("BYTES.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,20,1789,90)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,19,687,107)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,18,310,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,18,310,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101"), hook{}("BYTES.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1798,18,1798,62)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,20,292,138)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), klabel{}("_^%Int__"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(934,18,934,138)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^%Int__"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(934,18,934,138)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] hooked-symbol Lbl'UndsXor-'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}^{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), right{}(), terminals{}("010"), hook{}("FLOAT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,20,1244,98)"), left{}(Lbl'UndsXor-'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c^Float%r %2"), function{}()] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), klabel{}("_^Int_"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,18,933,177)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,18,933,177)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Defns'Unds'Defn'Unds'Defns{}(SortDefn{}, SortDefns{}) : SortDefns{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,27,59,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Instrs'Unds'Instr'Unds'Instrs{}(SortInstr{}, SortInstrs{}) : SortInstrs{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,27,58,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts{}(SortStmt{}, SortStmts{}) : SortStmts{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,27,60,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] @@ -688,98 +688,98 @@ module KWASM-LEMMAS symbol Lbl'UndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TableType'Unds'TextLimits'Unds'TableElemType{}(SortTextLimits{}, SortTableElemType{}) : SortTableType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(230,26,230,49)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TextLimits'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortTextLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(157,33,157,39)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'FuncSpec'Unds'TypeUse'Unds'LocalDecls'Unds'Instrs{}(SortTypeUse{}, SortLocalDecls{}, SortInstrs{}) : SortFuncSpec{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(204,25,204,49)"), left{}(), format{}("%1 %2 %3"), injective{}()] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andBool_"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(823,19,823,189)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andThenBool_"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(824,19,824,151)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(823,19,823,189)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andThenBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(824,19,824,151)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] symbol Lbl'Unds'appendDefn'UndsUnds'WASM-TEXT'Unds'Defns'Unds'Defns'Unds'Defn{}(SortDefns{}, SortDefn{}) : SortDefns{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(403,22,403,55)"), left{}(), format{}("%1 %cappendDefn%r %2"), function{}()] symbol Lbl'Unds'appendInstrs'UndsUnds'WASM-TEXT'Unds'Instrs'Unds'Instrs'Unds'Instrs{}(SortInstrs{}, SortInstrs{}) : SortInstrs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(565,23,565,66)"), left{}(), format{}("%1 %cappendInstrs%r %2"), function{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_divInt_"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(942,18,942,121)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_divInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(942,18,942,121)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1021,19,1021,52)"), left{}(), format{}("%1 %cdividesInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_impliesBool_"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,19,828,150)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_impliesBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,19,828,150)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(734,19,734,101)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(368,19,368,93)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_modInt_"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(943,18,943,121)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orBool_"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(826,19,826,184)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orElseBool_"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(827,19,827,148)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_modInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(943,18,943,121)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(826,19,826,184)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orElseBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(827,19,827,148)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] symbol Lbl'Unds'up'Slsh'Int'UndsUnds'WASM'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1195,20,1195,46)"), left{}(), format{}("%1 %cup/Int%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_xorBool_"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(825,19,825,143)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), klabel{}("_xorInt_"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,188)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(268,18,268,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), klabel{}("_|Int_"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,179)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(825,19,825,143)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorInt_"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,188)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(268,18,268,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|Int_"), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,179)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,18,558,88)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] - symbol LblaAbs{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aAbs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,57)"), left{}(), format{}("%cabs%r"), injective{}()] - symbol LblaBlock{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aBlock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,22,440,84)"), left{}(), format{}("%c#block%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaBr{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(452,22,452,53)"), left{}(), format{}("%c#br%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaBr'Unds'if{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr_if"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,22,460,66)"), left{}(), format{}("%c#br_if%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaBr'Unds'table{}(SortInts{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr_table"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,22,469,73)"), left{}(), format{}("%c#br_table%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCall{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,22,777,55)"), left{}(), format{}("%c#call%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCall'Unds'indirect{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aCall_indirect"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(789,22,789,82)"), left{}(), format{}("%c#call_indirect%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCeil{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aCeil"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,22,22,57)"), left{}(), format{}("%cceil%r"), injective{}()] - symbol LblaClz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aClz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,22,13,52)"), left{}(), format{}("%cclz%r"), injective{}()] - symbol LblaConvert'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,72)"), left{}(), format{}("%cconvert_i32_s%r"), injective{}()] - symbol LblaConvert'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,72)"), left{}(), format{}("%cconvert_i32_u%r"), injective{}()] - symbol LblaConvert'Unds'i64'Unds's{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i64_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,72)"), left{}(), format{}("%cconvert_i64_s%r"), injective{}()] - symbol LblaConvert'Unds'i64'Unds'u{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i64_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,72)"), left{}(), format{}("%cconvert_i64_u%r"), injective{}()] - symbol LblaCtz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aCtz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,52)"), left{}(), format{}("%cctz%r"), injective{}()] - symbol LblaCvtOp{}(SortValType{}, SortCvtOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aCvtOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,27,83,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaDataDefn{}(SortInt{}, SortInstrs{}, SortBytes{}) : SortDataDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aDataDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1174,25,1174,101)"), left{}(), format{}("%c#data%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaDemote'Unds'f64{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aDemote_f64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,66)"), left{}(), format{}("%cdemote_f64%r"), injective{}()] - symbol LblaDrop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aDrop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,27,84,81)"), left{}(), format{}("%cdrop%r"), injective{}()] - symbol LblaElemDefn{}(SortInt{}, SortInstrs{}, SortInts{}) : SortElemDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aElemDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,25,1143,107)"), left{}(), format{}("%c#elem%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaEqz{}() : SortTestOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aEqz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,23,53,50)"), left{}(), format{}("%ceqz%r"), injective{}()] - symbol LblaExportDefn{}(SortWasmString{}, SortInt{}) : SortExportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aExportDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1223,27,1223,95)"), left{}(), format{}("%c#export%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaExtend'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aExtend_i32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,70)"), left{}(), format{}("%cextend_i32_s%r"), injective{}()] - symbol LblaExtend'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aExtend_i32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,70)"), left{}(), format{}("%cextend_i32_u%r"), injective{}()] - symbol LblaFBinOp{}(SortFValType{}, SortFBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFBinOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,27,79,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFConst{}(SortFValType{}, SortNumber{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0110"), klabel{}("aFConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,27,75,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] - symbol LblaFRelOp{}(SortFValType{}, SortFRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,27,82,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFUnOp{}(SortFValType{}, SortFUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFUnOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,27,77,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFloor{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aFloor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,57)"), left{}(), format{}("%cfloor%r"), injective{}()] - symbol LblaFuncDefn{}(SortInt{}, SortVecType{}, SortInstrs{}, SortFuncMetadata{}) : SortFuncDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("aFuncDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(689,25,689,123)"), left{}(), format{}("%c#func%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol LblaFuncDesc{}(SortOptionalId{}, SortInt{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aFuncDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,27,1244,112)"), left{}(), format{}("%c#funcDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaFuncType{}(SortVecType{}, SortVecType{}) : SortFuncType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFuncType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,25,248,72)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] - symbol LblaGlobal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aGlobal.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(582,22,582,76)"), left{}(), format{}("%c#global.get%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaGlobal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aGlobal.set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(583,22,583,76)"), left{}(), format{}("%c#global.set%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaGlobalDefn{}(SortGlobalType{}, SortInstrs{}, SortOptionalId{}) : SortGlobalDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aGlobalDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(551,27,551,117)"), left{}(), format{}("%c#global%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaGlobalDesc{}(SortOptionalId{}, SortGlobalType{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aGlobalDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,27,1245,112)"), left{}(), format{}("%c#globalDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaGlobalType{}(SortMut{}, SortValType{}) : SortGlobalType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("00"), klabel{}("aGlobalType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(548,27,548,67)"), left{}(), format{}("%1 %2"), injective{}()] - symbol LblaGrow{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aGrow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,27,90,81)"), left{}(), format{}("%cmemory.grow%r"), injective{}()] - symbol LblaIBinOp{}(SortIValType{}, SortIBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIBinOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,27,78,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIConst{}(SortIValType{}, SortWasmInt{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0110"), klabel{}("aIConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,27,74,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] - symbol LblaIRelOp{}(SortIValType{}, SortIRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,27,81,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIUnOp{}(SortIValType{}, SortIUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIUnOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,27,76,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIf{}(SortVecType{}, SortInstrs{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("aIf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(478,22,478,112)"), left{}(), format{}("%c#if%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol LblaImportDefn{}(SortWasmString{}, SortWasmString{}, SortImportDesc{}) : SortImportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aImportDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,27,1243,112)"), left{}(), format{}("%c#import%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaLoad{}(SortValType{}, SortLoadOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,22,1001,81)"), left{}(), format{}("%c#load%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaLocal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,22,522,74)"), left{}(), format{}("%c#local.get%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLocal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,22,523,74)"), left{}(), format{}("%c#local.set%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLocal'Stop'tee{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.tee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,22,524,74)"), left{}(), format{}("%c#local.tee%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLoop{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aLoop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,22,488,82)"), left{}(), format{}("%c#loop%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaMemoryDefn{}(SortLimits{}, SortOptionalId{}) : SortMemoryDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aMemoryDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,27,916,101)"), left{}(), format{}("%c#memory%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaMemoryDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aMemoryDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,27,1247,112)"), left{}(), format{}("%c#memoryDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaModuleDecl{}(SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortModuleMetadata{}) : SortModuleDecl{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101010101010101"), klabel{}("aModuleDecl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1375,27,1375,239)"), left{}(), format{}("%c#module%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c)%r"), injective{}()] - symbol LblaNearest{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNearest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,57)"), left{}(), format{}("%cnearest%r"), injective{}()] - symbol LblaNeg{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNeg"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,22,19,57)"), left{}(), format{}("%cneg%r"), injective{}()] - symbol LblaNop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,27,86,80)"), left{}(), format{}("%cnop%r"), injective{}()] - symbol LblaPopcnt{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aPopcnt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,22,15,55)"), left{}(), format{}("%cpopcnt%r"), injective{}()] - symbol LblaPromote'Unds'f32{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aPromote_f32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,68)"), left{}(), format{}("%cpromote_f32%r"), injective{}()] - symbol LblaReturn{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aReturn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,27,88,83)"), left{}(), format{}("%creturn%r"), injective{}()] - symbol LblaSelect{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSelect"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,27,85,83)"), left{}(), format{}("%cselect%r"), injective{}()] - symbol LblaSize{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSize"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,27,89,81)"), left{}(), format{}("%cmemory.size%r"), injective{}()] - symbol LblaSqrt{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSqrt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,22,20,57)"), left{}(), format{}("%csqrt%r"), injective{}()] - symbol LblaStartDefn{}(SortInt{}) : SortStartDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aStartDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,26,1206,65)"), left{}(), format{}("%c#start%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaStore{}(SortValType{}, SortStoreOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,22,952,84)"), left{}(), format{}("%c#store%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaTableDefn{}(SortLimits{}, SortOptionalId{}) : SortTableDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTableDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,26,873,99)"), left{}(), format{}("%c#table%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaTableDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTableDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,27,1246,112)"), left{}(), format{}("%c#tableDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaTestOp{}(SortIValType{}, SortTestOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aTestOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,27,80,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaTrunc{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,22,23,57)"), left{}(), format{}("%ctrunc%r"), injective{}()] - symbol LblaTrunc'Unds'f32'Unds's{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,68)"), left{}(), format{}("%ctrunc_f32_s%r"), injective{}()] - symbol LblaTrunc'Unds'f32'Unds'u{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,68)"), left{}(), format{}("%ctrunc_f32_u%r"), injective{}()] - symbol LblaTrunc'Unds'f64'Unds's{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f64_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,68)"), left{}(), format{}("%ctrunc_f64_s%r"), injective{}()] - symbol LblaTrunc'Unds'f64'Unds'u{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f64_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,68)"), left{}(), format{}("%ctrunc_f64_u%r"), injective{}()] - symbol LblaTypeDefn{}(SortFuncType{}, SortOptionalId{}) : SortTypeDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTypeDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,25,660,95)"), left{}(), format{}("%c#type%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaUnreachable{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aUnreachable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,27,87,88)"), left{}(), format{}("%cunreachable%r"), injective{}()] - symbol LblaVecType{}(SortValTypes{}) : SortVecType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("101"), klabel{}("aVecType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(245,25,245,67)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] - symbol LblaWrap'Unds'i64{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aWrap_i64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,62)"), left{}(), format{}("%cwrap_i64%r"), injective{}()] + symbol LblaAbs{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aAbs"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,57)"), left{}(), format{}("%cabs%r"), injective{}()] + symbol LblaBlock{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBlock"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,22,440,84)"), left{}(), format{}("%c#block%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaBr{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(452,22,452,53)"), left{}(), format{}("%c#br%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaBr'Unds'if{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr_if"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,22,460,66)"), left{}(), format{}("%c#br_if%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaBr'Unds'table{}(SortInts{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr_table"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,22,469,73)"), left{}(), format{}("%c#br_table%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCall{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCall"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,22,777,55)"), left{}(), format{}("%c#call%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCall'Unds'indirect{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCall_indirect"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(789,22,789,82)"), left{}(), format{}("%c#call_indirect%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCeil{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aCeil"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,22,22,57)"), left{}(), format{}("%cceil%r"), injective{}()] + symbol LblaClz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aClz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,22,13,52)"), left{}(), format{}("%cclz%r"), injective{}()] + symbol LblaConvert'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,72)"), left{}(), format{}("%cconvert_i32_s%r"), injective{}()] + symbol LblaConvert'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,72)"), left{}(), format{}("%cconvert_i32_u%r"), injective{}()] + symbol LblaConvert'Unds'i64'Unds's{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i64_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,72)"), left{}(), format{}("%cconvert_i64_s%r"), injective{}()] + symbol LblaConvert'Unds'i64'Unds'u{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i64_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,72)"), left{}(), format{}("%cconvert_i64_u%r"), injective{}()] + symbol LblaCtz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aCtz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,52)"), left{}(), format{}("%cctz%r"), injective{}()] + symbol LblaCvtOp{}(SortValType{}, SortCvtOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCvtOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,27,83,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaDataDefn{}(SortInt{}, SortInstrs{}, SortBytes{}) : SortDataDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aDataDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1174,25,1174,101)"), left{}(), format{}("%c#data%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaDemote'Unds'f64{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aDemote_f64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,66)"), left{}(), format{}("%cdemote_f64%r"), injective{}()] + symbol LblaDrop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aDrop"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,27,84,81)"), left{}(), format{}("%cdrop%r"), injective{}()] + symbol LblaElemDefn{}(SortInt{}, SortInstrs{}, SortInts{}) : SortElemDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aElemDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,25,1143,107)"), left{}(), format{}("%c#elem%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaEqz{}() : SortTestOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aEqz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,23,53,50)"), left{}(), format{}("%ceqz%r"), injective{}()] + symbol LblaExportDefn{}(SortWasmString{}, SortInt{}) : SortExportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aExportDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1223,27,1223,95)"), left{}(), format{}("%c#export%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaExtend'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aExtend_i32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,70)"), left{}(), format{}("%cextend_i32_s%r"), injective{}()] + symbol LblaExtend'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aExtend_i32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,70)"), left{}(), format{}("%cextend_i32_u%r"), injective{}()] + symbol LblaFBinOp{}(SortFValType{}, SortFBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFBinOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,27,79,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFConst{}(SortFValType{}, SortNumber{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFConst"), priorities{}(), right{}(), terminals{}("0110"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,27,75,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] + symbol LblaFRelOp{}(SortFValType{}, SortFRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFRelOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,27,82,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFUnOp{}(SortFValType{}, SortFUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFUnOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,27,77,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFloor{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aFloor"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,57)"), left{}(), format{}("%cfloor%r"), injective{}()] + symbol LblaFuncDefn{}(SortInt{}, SortVecType{}, SortInstrs{}, SortFuncMetadata{}) : SortFuncDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFuncDefn"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(689,25,689,123)"), left{}(), format{}("%c#func%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol LblaFuncDesc{}(SortOptionalId{}, SortInt{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFuncDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,27,1244,112)"), left{}(), format{}("%c#funcDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaFuncType{}(SortVecType{}, SortVecType{}) : SortFuncType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("aFuncType"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,25,248,72)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] + symbol LblaGlobal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobal.get"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(582,22,582,76)"), left{}(), format{}("%c#global.get%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaGlobal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobal.set"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(583,22,583,76)"), left{}(), format{}("%c#global.set%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaGlobalDefn{}(SortGlobalType{}, SortInstrs{}, SortOptionalId{}) : SortGlobalDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(551,27,551,117)"), left{}(), format{}("%c#global%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaGlobalDesc{}(SortOptionalId{}, SortGlobalType{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,27,1245,112)"), left{}(), format{}("%c#globalDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaGlobalType{}(SortMut{}, SortValType{}) : SortGlobalType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalType"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(548,27,548,67)"), left{}(), format{}("%1 %2"), injective{}()] + symbol LblaGrow{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGrow"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,27,90,81)"), left{}(), format{}("%cmemory.grow%r"), injective{}()] + symbol LblaIBinOp{}(SortIValType{}, SortIBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIBinOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,27,78,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIConst{}(SortIValType{}, SortWasmInt{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIConst"), priorities{}(), right{}(), terminals{}("0110"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,27,74,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] + symbol LblaIRelOp{}(SortIValType{}, SortIRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIRelOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,27,81,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIUnOp{}(SortIValType{}, SortIUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIUnOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,27,76,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIf{}(SortVecType{}, SortInstrs{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIf"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(478,22,478,112)"), left{}(), format{}("%c#if%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol LblaImportDefn{}(SortWasmString{}, SortWasmString{}, SortImportDesc{}) : SortImportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aImportDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,27,1243,112)"), left{}(), format{}("%c#import%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaLoad{}(SortValType{}, SortLoadOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLoad"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,22,1001,81)"), left{}(), format{}("%c#load%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaLocal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.get"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,22,522,74)"), left{}(), format{}("%c#local.get%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLocal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.set"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,22,523,74)"), left{}(), format{}("%c#local.set%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLocal'Stop'tee{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.tee"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,22,524,74)"), left{}(), format{}("%c#local.tee%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLoop{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLoop"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,22,488,82)"), left{}(), format{}("%c#loop%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaMemoryDefn{}(SortLimits{}, SortOptionalId{}) : SortMemoryDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aMemoryDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,27,916,101)"), left{}(), format{}("%c#memory%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaMemoryDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aMemoryDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,27,1247,112)"), left{}(), format{}("%c#memoryDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaModuleDecl{}(SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortModuleMetadata{}) : SortModuleDecl{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aModuleDecl"), priorities{}(), right{}(), terminals{}("110101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1375,27,1375,239)"), left{}(), format{}("%c#module%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c)%r"), injective{}()] + symbol LblaNearest{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aNearest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,57)"), left{}(), format{}("%cnearest%r"), injective{}()] + symbol LblaNeg{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aNeg"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,22,19,57)"), left{}(), format{}("%cneg%r"), injective{}()] + symbol LblaNop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aNop"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,27,86,80)"), left{}(), format{}("%cnop%r"), injective{}()] + symbol LblaPopcnt{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aPopcnt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,22,15,55)"), left{}(), format{}("%cpopcnt%r"), injective{}()] + symbol LblaPromote'Unds'f32{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aPromote_f32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,68)"), left{}(), format{}("%cpromote_f32%r"), injective{}()] + symbol LblaReturn{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aReturn"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,27,88,83)"), left{}(), format{}("%creturn%r"), injective{}()] + symbol LblaSelect{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aSelect"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,27,85,83)"), left{}(), format{}("%cselect%r"), injective{}()] + symbol LblaSize{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aSize"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,27,89,81)"), left{}(), format{}("%cmemory.size%r"), injective{}()] + symbol LblaSqrt{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aSqrt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,22,20,57)"), left{}(), format{}("%csqrt%r"), injective{}()] + symbol LblaStartDefn{}(SortInt{}) : SortStartDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aStartDefn"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,26,1206,65)"), left{}(), format{}("%c#start%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaStore{}(SortValType{}, SortStoreOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aStore"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,22,952,84)"), left{}(), format{}("%c#store%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaTableDefn{}(SortLimits{}, SortOptionalId{}) : SortTableDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTableDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,26,873,99)"), left{}(), format{}("%c#table%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaTableDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTableDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,27,1246,112)"), left{}(), format{}("%c#tableDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaTestOp{}(SortIValType{}, SortTestOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTestOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,27,80,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaTrunc{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,22,23,57)"), left{}(), format{}("%ctrunc%r"), injective{}()] + symbol LblaTrunc'Unds'f32'Unds's{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,68)"), left{}(), format{}("%ctrunc_f32_s%r"), injective{}()] + symbol LblaTrunc'Unds'f32'Unds'u{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,68)"), left{}(), format{}("%ctrunc_f32_u%r"), injective{}()] + symbol LblaTrunc'Unds'f64'Unds's{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f64_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,68)"), left{}(), format{}("%ctrunc_f64_s%r"), injective{}()] + symbol LblaTrunc'Unds'f64'Unds'u{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f64_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,68)"), left{}(), format{}("%ctrunc_f64_u%r"), injective{}()] + symbol LblaTypeDefn{}(SortFuncType{}, SortOptionalId{}) : SortTypeDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTypeDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,25,660,95)"), left{}(), format{}("%c#type%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaUnreachable{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aUnreachable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,27,87,88)"), left{}(), format{}("%cunreachable%r"), injective{}()] + symbol LblaVecType{}(SortValTypes{}) : SortVecType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("aVecType"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(245,25,245,67)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] + symbol LblaWrap'Unds'i64{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aWrap_i64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,62)"), left{}(), format{}("%cwrap_i64%r"), injective{}()] hooked-symbol LblabsFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fp.abs"), right{}(), terminals{}("1101"), klabel{}("absFloat"), hook{}("FLOAT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1289,20,1289,105)"), left{}(), format{}("%cabsFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), right{}(), terminals{}("1101"), klabel{}("absInt"), hook{}("INT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(972,18,972,123)"), left{}(), format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblacosFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("acosFloat"), hook{}("FLOAT.acos"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1300,20,1300,76)"), left{}(), format{}("%cacosFloat%r %c(%r %1 %c)%r"), function{}()] @@ -795,7 +795,7 @@ module KWASM-LEMMAS hooked-symbol LblasinFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("asinFloat"), hook{}("FLOAT.asin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1299,20,1299,76)"), left{}(), format{}("%casinFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblatan2Float'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("atan2Float"), hook{}("FLOAT.atan2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1302,20,1302,77)"), left{}(), format{}("%catan2Float%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblatanFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("atanFloat"), hook{}("FLOAT.atan"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1301,20,1301,88)"), left{}(), format{}("%catanFloat%r %c(%r %1 %c)%r"), function{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("bigEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1727,25,1727,61)"), left{}(), format{}("%cBE%r"), injective{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("bigEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1727,25,1727,61)"), left{}(), format{}("%cBE%r"), injective{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("bitRangeInt"), hook{}("INT.bitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(997,18,997,102)"), left{}(), format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] symbol Lblblock'UndsUndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,27,121,78)"), left{}(), format{}("%cblock%r %1 %2 %3 %cend%r %4"), injective{}()] symbol Lblbr'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,36)"), left{}(), format{}("%cbr%r %1"), injective{}()] @@ -821,28 +821,28 @@ module KWASM-LEMMAS hooked-symbol LblexpFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("expFloat"), hook{}("FLOAT.exp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,20,1294,87)"), left{}(), format{}("%cexpFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblexponentBitsFloat'LParUndsRParUnds'FLOAT'Unds'Int'Unds'Float{}(SortFloat{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("exponentBitsFloat"), hook{}("FLOAT.exponentBits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1200,18,1200,90)"), left{}(), format{}("%cexponentBitsFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblexponentFloat'LParUndsRParUnds'FLOAT'Unds'Int'Unds'Float{}(SortFloat{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("exponentFloat"), hook{}("FLOAT.exponent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1208,18,1208,82)"), left{}(), format{}("%cexponentFloat%r %c(%r %1 %c)%r"), function{}()] - symbol Lblf32{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("f32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,51)"), left{}(), format{}("%cf32%r"), injective{}()] - symbol Lblf64{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("f64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,55,87,81)"), left{}(), format{}("%cf64%r"), injective{}()] + symbol Lblf32{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("f32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,51)"), left{}(), format{}("%cf32%r"), injective{}()] + symbol Lblf64{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("f64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,55,87,81)"), left{}(), format{}("%cf64%r"), injective{}()] hooked-symbol LblfillList'LParUndsCommUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("fillList"), hook{}("LIST.fill"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(715,19,715,99)"), left{}(), format{}("%cfillList%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] hooked-symbol LblfindChar'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findChar"), hook{}("STRING.findChar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1460,18,1460,115)"), left{}(), format{}("%cfindChar%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblfindString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findString"), hook{}("STRING.find"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1449,18,1449,110)"), left{}(), format{}("%cfindString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblfloatAdd{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatAdd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,23,44,54)"), left{}(), format{}("%cadd%r"), injective{}()] - symbol LblfloatCopysign{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatCopysign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,23,50,64)"), left{}(), format{}("%ccopysign%r"), injective{}()] - symbol LblfloatDiv{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatDiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,23,47,54)"), left{}(), format{}("%cdiv%r"), injective{}()] - symbol LblfloatEq{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatEq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,23,72,52)"), left{}(), format{}("%ceq%r"), injective{}()] - symbol LblfloatGe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatGe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,23,71,52)"), left{}(), format{}("%cge%r"), injective{}()] - symbol LblfloatGt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatGt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,23,69,52)"), left{}(), format{}("%cgt%r"), injective{}()] - symbol LblfloatLe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatLe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,23,70,52)"), left{}(), format{}("%cle%r"), injective{}()] - symbol LblfloatLt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatLt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,23,68,52)"), left{}(), format{}("%clt%r"), injective{}()] - symbol LblfloatMax{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,54)"), left{}(), format{}("%cmax%r"), injective{}()] - symbol LblfloatMin{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,23,48,54)"), left{}(), format{}("%cmin%r"), injective{}()] - symbol LblfloatMul{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,23,46,54)"), left{}(), format{}("%cmul%r"), injective{}()] - symbol LblfloatNe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatNe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,23,73,52)"), left{}(), format{}("%cne%r"), injective{}()] - symbol LblfloatSub{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatSub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,23,45,54)"), left{}(), format{}("%csub%r"), injective{}()] + symbol LblfloatAdd{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatAdd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,23,44,54)"), left{}(), format{}("%cadd%r"), injective{}()] + symbol LblfloatCopysign{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatCopysign"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,23,50,64)"), left{}(), format{}("%ccopysign%r"), injective{}()] + symbol LblfloatDiv{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatDiv"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,23,47,54)"), left{}(), format{}("%cdiv%r"), injective{}()] + symbol LblfloatEq{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatEq"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,23,72,52)"), left{}(), format{}("%ceq%r"), injective{}()] + symbol LblfloatGe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatGe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,23,71,52)"), left{}(), format{}("%cge%r"), injective{}()] + symbol LblfloatGt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatGt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,23,69,52)"), left{}(), format{}("%cgt%r"), injective{}()] + symbol LblfloatLe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatLe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,23,70,52)"), left{}(), format{}("%cle%r"), injective{}()] + symbol LblfloatLt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatLt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,23,68,52)"), left{}(), format{}("%clt%r"), injective{}()] + symbol LblfloatMax{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMax"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,54)"), left{}(), format{}("%cmax%r"), injective{}()] + symbol LblfloatMin{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMin"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,23,48,54)"), left{}(), format{}("%cmin%r"), injective{}()] + symbol LblfloatMul{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMul"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,23,46,54)"), left{}(), format{}("%cmul%r"), injective{}()] + symbol LblfloatNe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatNe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,23,73,52)"), left{}(), format{}("%cne%r"), injective{}()] + symbol LblfloatSub{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatSub"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,23,45,54)"), left{}(), format{}("%csub%r"), injective{}()] hooked-symbol LblfloorFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("floorFloat"), hook{}("FLOAT.floor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1291,20,1291,89)"), left{}(), format{}("%cfloorFloat%r %c(%r %1 %c)%r"), function{}()] symbol Lblframe'UndsUndsUndsUndsUnds'WASM'Unds'Frame'Unds'Int'Unds'ValTypes'Unds'ValStack'Unds'Map{}(SortInt{}, SortValTypes{}, SortValStack{}, SortMap{}) : SortFrame{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(733,22,733,54)"), left{}(), format{}("%cframe%r %1 %2 %3 %4"), injective{}()] symbol LblfreshInt'LParUndsRParUnds'INT'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), freshGenerator{}(), klabel{}("freshInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1137,18,1137,81)"), left{}(), format{}("%cfreshInt%r %c(%r %1 %c)%r"), private{}(), function{}()] - symbol LblfuncMeta{}(SortOptionalId{}, SortMap{}) : SortFuncMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("funcMeta"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(722,29,722,91)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblfuncMeta{}(SortOptionalId{}, SortMap{}) : SortFuncMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("funcMeta"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(722,29,722,91)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] symbol Lblfunc'Unds'WASM-DATA-COMMON-SYNTAX'Unds'AllocatedKind{}() : SortAllocatedKind{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,30,134,35)"), left{}(), format{}("%cfunc%r"), injective{}()] symbol Lblfuncref'Unds'WASM-TEXT-COMMON-SYNTAX'Unds'TableElemType{}() : SortTableElemType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,30,231,38)"), left{}(), format{}("%cfuncref%r"), injective{}()] symbol LblgatherTypes'LParUndsCommUndsRParUnds'WASM'Unds'VecType'Unds'TypeKeyWord'Unds'TypeDecls{}(SortTypeKeyWord{}, SortTypeDecls{}) : SortVecType{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("gatherTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(623,25,623,85)"), left{}(), format{}("%cgatherTypes%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -851,8 +851,8 @@ module KWASM-LEMMAS symbol Lblglobal'Stop'set'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,27,97,44)"), left{}(), format{}("%cglobal.set%r %1"), injective{}()] symbol Lblglobal'Unds'WASM-DATA-COMMON-SYNTAX'Unds'AllocatedKind{}() : SortAllocatedKind{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,60,134,67)"), left{}(), format{}("%cglobal%r"), injective{}()] symbol Lblgrow'UndsUnds'WASM'Unds'Instr'Unds'Int{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1075,22,1075,31)"), left{}(), format{}("%cgrow%r %1"), injective{}()] - symbol Lbli32{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("i32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,51)"), left{}(), format{}("%ci32%r"), injective{}()] - symbol Lbli64{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("i64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,55,86,81)"), left{}(), format{}("%ci64%r"), injective{}()] + symbol Lbli32{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("i32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,51)"), left{}(), format{}("%ci32%r"), injective{}()] + symbol Lbli64{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("i64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,55,86,81)"), left{}(), format{}("%ci64%r"), injective{}()] symbol Lblif'UndsUndsUnds'else'UndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,27,123,100)"), left{}(), format{}("%cif%r %1 %2 %3 %celse%r %4 %5 %cend%r %6"), injective{}()] symbol Lblif'UndsUndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,27,124,100)"), left{}(), format{}("%cif%r %1 %2 %3 %cend%r %4"), injective{}()] symbol LblinitCurFrameCell{}() : SortCurFrameCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitCurFrameCell%r"), function{}()] @@ -921,31 +921,31 @@ module KWASM-LEMMAS symbol LblinitWasmCell{}() : SortWasmCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitWasmCell%r"), function{}()] symbol Lblinit'Unds'local'UndsUndsUnds'WASM'Unds'Instr'Unds'Int'Unds'Val{}(SortInt{}, SortVal{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("100"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(502,23,502,43)"), left{}(), format{}("%cinit_local%r %1 %2"), injective{}()] symbol Lblinit'Unds'locals'UndsUnds'WASM'Unds'Instr'Unds'ValStack{}(SortValStack{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(503,23,503,48)"), left{}(), format{}("%cinit_locals%r %1"), injective{}()] - symbol LblintAdd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intAdd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,23,27,52)"), left{}(), format{}("%cadd%r"), injective{}()] - symbol LblintAnd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intAnd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,52)"), left{}(), format{}("%cand%r"), injective{}()] - symbol LblintDiv'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intDiv_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(32,23,32,56)"), left{}(), format{}("%cdiv_s%r"), injective{}()] - symbol LblintDiv'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intDiv_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,23,30,56)"), left{}(), format{}("%cdiv_u%r"), injective{}()] - symbol LblintEq{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intEq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,23,56,50)"), left{}(), format{}("%ceq%r"), injective{}()] - symbol LblintGe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGe_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,23,65,54)"), left{}(), format{}("%cge_s%r"), injective{}()] - symbol LblintGe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGe_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,23,63,54)"), left{}(), format{}("%cge_u%r"), injective{}()] - symbol LblintGt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGt_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,23,61,54)"), left{}(), format{}("%cgt_s%r"), injective{}()] - symbol LblintGt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGt_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,23,59,54)"), left{}(), format{}("%cgt_u%r"), injective{}()] - symbol LblintLe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLe_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,23,64,54)"), left{}(), format{}("%cle_s%r"), injective{}()] - symbol LblintLe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLe_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,23,62,54)"), left{}(), format{}("%cle_u%r"), injective{}()] - symbol LblintLt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLt_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,23,60,54)"), left{}(), format{}("%clt_s%r"), injective{}()] - symbol LblintLt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLt_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,23,58,54)"), left{}(), format{}("%clt_u%r"), injective{}()] - symbol LblintMul{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intMul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(29,23,29,52)"), left{}(), format{}("%cmul%r"), injective{}()] - symbol LblintNe{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intNe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,23,57,50)"), left{}(), format{}("%cne%r"), injective{}()] - symbol LblintOr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intOr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,50)"), left{}(), format{}("%cor%r"), injective{}()] - symbol LblintRem'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRem_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,56)"), left{}(), format{}("%crem_s%r"), injective{}()] - symbol LblintRem'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRem_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,23,31,56)"), left{}(), format{}("%crem_u%r"), injective{}()] - symbol LblintRotl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRotl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,54)"), left{}(), format{}("%crotl%r"), injective{}()] - symbol LblintRotr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRotr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,23,41,54)"), left{}(), format{}("%crotr%r"), injective{}()] - symbol LblintShl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,52)"), left{}(), format{}("%cshl%r"), injective{}()] - symbol LblintShr'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShr_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,56)"), left{}(), format{}("%cshr_s%r"), injective{}()] - symbol LblintShr'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShr_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,23,38,56)"), left{}(), format{}("%cshr_u%r"), injective{}()] - symbol LblintSub{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intSub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,23,28,52)"), left{}(), format{}("%csub%r"), injective{}()] - symbol LblintXor{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intXor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,23,36,52)"), left{}(), format{}("%cxor%r"), injective{}()] + symbol LblintAdd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intAdd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,23,27,52)"), left{}(), format{}("%cadd%r"), injective{}()] + symbol LblintAnd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intAnd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,52)"), left{}(), format{}("%cand%r"), injective{}()] + symbol LblintDiv'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intDiv_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(32,23,32,56)"), left{}(), format{}("%cdiv_s%r"), injective{}()] + symbol LblintDiv'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intDiv_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,23,30,56)"), left{}(), format{}("%cdiv_u%r"), injective{}()] + symbol LblintEq{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intEq"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,23,56,50)"), left{}(), format{}("%ceq%r"), injective{}()] + symbol LblintGe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGe_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,23,65,54)"), left{}(), format{}("%cge_s%r"), injective{}()] + symbol LblintGe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGe_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,23,63,54)"), left{}(), format{}("%cge_u%r"), injective{}()] + symbol LblintGt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGt_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,23,61,54)"), left{}(), format{}("%cgt_s%r"), injective{}()] + symbol LblintGt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGt_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,23,59,54)"), left{}(), format{}("%cgt_u%r"), injective{}()] + symbol LblintLe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLe_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,23,64,54)"), left{}(), format{}("%cle_s%r"), injective{}()] + symbol LblintLe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLe_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,23,62,54)"), left{}(), format{}("%cle_u%r"), injective{}()] + symbol LblintLt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLt_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,23,60,54)"), left{}(), format{}("%clt_s%r"), injective{}()] + symbol LblintLt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLt_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,23,58,54)"), left{}(), format{}("%clt_u%r"), injective{}()] + symbol LblintMul{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intMul"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(29,23,29,52)"), left{}(), format{}("%cmul%r"), injective{}()] + symbol LblintNe{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intNe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,23,57,50)"), left{}(), format{}("%cne%r"), injective{}()] + symbol LblintOr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intOr"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,50)"), left{}(), format{}("%cor%r"), injective{}()] + symbol LblintRem'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRem_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,56)"), left{}(), format{}("%crem_s%r"), injective{}()] + symbol LblintRem'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRem_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,23,31,56)"), left{}(), format{}("%crem_u%r"), injective{}()] + symbol LblintRotl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRotl"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,54)"), left{}(), format{}("%crotl%r"), injective{}()] + symbol LblintRotr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRotr"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,23,41,54)"), left{}(), format{}("%crotr%r"), injective{}()] + symbol LblintShl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShl"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,52)"), left{}(), format{}("%cshl%r"), injective{}()] + symbol LblintShr'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShr_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,56)"), left{}(), format{}("%cshr_s%r"), injective{}()] + symbol LblintShr'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShr_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,23,38,56)"), left{}(), format{}("%cshr_u%r"), injective{}()] + symbol LblintSub{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intSub"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,23,28,52)"), left{}(), format{}("%csub%r"), injective{}()] + symbol LblintXor{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intXor"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,23,36,52)"), left{}(), format{}("%cxor%r"), injective{}()] hooked-symbol LblintersectSet'LParUndsCommUndsRParUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("intersectSet"), hook{}("SET.intersection"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(569,18,569,88)"), left{}(), format{}("%cintersectSet%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol Lblis'Hash'Layout{}(SortK{}) : SortBool{} [functional{}(), predicate{}("#Layout"), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cis#Layout%r %c(%r %1 %c)%r"), function{}()] symbol LblisAlignArg{}(SortK{}) : SortBool{} [functional{}(), predicate{}("AlignArg"), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cisAlignArg%r %c(%r %1 %c)%r"), function{}()] @@ -1210,19 +1210,19 @@ module KWASM-LEMMAS hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), klabel{}("lengthBytes"), hook{}("BYTES.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1853,18,1853,99)"), left{}(), format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthString"), hook{}("STRING.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1414,18,1414,84)"), left{}(), format{}("%clengthString%r %c(%r %1 %c)%r"), function{}()] symbol LbllengthValTypes'LParUndsRParUnds'WASM-DATA'Unds'Int'Unds'ValTypes{}(SortValTypes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthValTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,20,251,69)"), left{}(), format{}("%clengthValTypes%r %c(%r %1 %c)%r"), function{}()] - symbol LbllimitsMin{}(SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("limitsMin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,23,235,70)"), left{}(), format{}("%c#limitsMin%r %c(%r %1 %c)%r"), injective{}()] - symbol LbllimitsMinMax{}(SortInt{}, SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("limitsMinMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,23,236,70)"), left{}(), format{}("%c#limits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LbllistInt{}(SortInt{}, SortInts{}) : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllistStmt{}(SortEmptyStmt{}, SortEmptyStmts{}) : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllistValTypes{}(SortValType{}, SortValTypes{}) : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listValTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("littleEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1726,25,1726,64)"), left{}(), format{}("%cLE%r"), injective{}()] - symbol LblloadOpLoad{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,24,108,62)"), left{}(), format{}("%cload%r"), injective{}()] - symbol LblloadOpLoad16'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad16_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,24,113,66)"), left{}(), format{}("%cload16_s%r"), injective{}()] - symbol LblloadOpLoad16'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad16_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,24,110,66)"), left{}(), format{}("%cload16_u%r"), injective{}()] - symbol LblloadOpLoad32'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,24,114,66)"), left{}(), format{}("%cload32_s%r"), injective{}()] - symbol LblloadOpLoad32'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,24,111,66)"), left{}(), format{}("%cload32_u%r"), injective{}()] - symbol LblloadOpLoad8'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad8_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,24,112,65)"), left{}(), format{}("%cload8_s%r"), injective{}()] - symbol LblloadOpLoad8'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad8_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,24,109,65)"), left{}(), format{}("%cload8_u%r"), injective{}()] + symbol LbllimitsMin{}(SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("limitsMin"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,23,235,70)"), left{}(), format{}("%c#limitsMin%r %c(%r %1 %c)%r"), injective{}()] + symbol LbllimitsMinMax{}(SortInt{}, SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("limitsMinMax"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,23,236,70)"), left{}(), format{}("%c#limits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LbllistInt{}(SortInt{}, SortInts{}) : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("listInt"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllistStmt{}(SortEmptyStmt{}, SortEmptyStmts{}) : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("listStmt"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllistValTypes{}(SortValType{}, SortValTypes{}) : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("listValTypes"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("littleEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1726,25,1726,64)"), left{}(), format{}("%cLE%r"), injective{}()] + symbol LblloadOpLoad{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,24,108,62)"), left{}(), format{}("%cload%r"), injective{}()] + symbol LblloadOpLoad16'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad16_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,24,113,66)"), left{}(), format{}("%cload16_s%r"), injective{}()] + symbol LblloadOpLoad16'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad16_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,24,110,66)"), left{}(), format{}("%cload16_u%r"), injective{}()] + symbol LblloadOpLoad32'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,24,114,66)"), left{}(), format{}("%cload32_s%r"), injective{}()] + symbol LblloadOpLoad32'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,24,111,66)"), left{}(), format{}("%cload32_u%r"), injective{}()] + symbol LblloadOpLoad8'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad8_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,24,112,65)"), left{}(), format{}("%cload8_s%r"), injective{}()] + symbol LblloadOpLoad8'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad8_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,24,109,65)"), left{}(), format{}("%cload8_u%r"), injective{}()] symbol Lblload'LBraUndsUndsUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'IValType'Unds'Int'Unds'Int'Unds'Signedness'Unds'Bytes{}(SortIValType{}, SortInt{}, SortInt{}, SortSignedness{}, SortBytes{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("11000001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,22,1003,68)"), left{}(), format{}("%cload%r %c{%r %1 %2 %3 %4 %5 %c}%r"), injective{}()] symbol Lblload'LBraUndsUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'IValType'Unds'Int'Unds'Int'Unds'Signedness{}(SortIValType{}, SortInt{}, SortInt{}, SortSignedness{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("1100001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1002,22,1002,62)"), left{}(), format{}("%cload%r %c{%r %1 %2 %3 %4 %c}%r"), injective{}()] symbol Lbllocal'Stop'get'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,27,98,43)"), left{}(), format{}("%clocal.get%r %1"), injective{}()] @@ -1242,9 +1242,9 @@ module KWASM-LEMMAS hooked-symbol LblminFloat'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fp.min"), right{}(), terminals{}("110101"), klabel{}("minFloat"), hook{}("FLOAT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,20,1304,93)"), left{}(), format{}("%cminFloat%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblminInt'LParUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 #2) #1 #2)"), right{}(), terminals{}("110101"), hook{}("INT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(963,18,963,118)"), left{}(), format{}("%cminInt%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblminValueFloat'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("minValueFloat"), hook{}("FLOAT.minValue"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,20,1307,105)"), left{}(), format{}("%cminValueFloat%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - symbol LblmoduleMeta{}(SortOptionalId{}, SortMap{}, SortOptionalString{}) : SortModuleMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("moduleMeta"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1382,31,1382,121)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblmutConst{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("mutConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,53)"), left{}(), format{}("%cconst%r"), injective{}()] - symbol LblmutVar{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("mutVar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,51)"), left{}(), format{}("%cvar%r"), injective{}()] + symbol LblmoduleMeta{}(SortOptionalId{}, SortMap{}, SortOptionalString{}) : SortModuleMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("moduleMeta"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1382,31,1382,121)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblmutConst{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("mutConst"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,53)"), left{}(), format{}("%cconst%r"), injective{}()] + symbol LblmutVar{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("mutVar"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,51)"), left{}(), format{}("%cvar%r"), injective{}()] hooked-symbol LblnewUUID'Unds'STRING-COMMON'Unds'String{}() : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), impure{}(), hook{}("STRING.uuid"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1566,21,1566,67)"), left{}(), format{}("%cnewUUID%r"), function{}()] symbol LblnoCurFrameCell{}() : SortCurFrameCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("CurFrameCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoCurFrameCell%r"), injective{}()] symbol LblnoCurModIdxCell{}() : SortCurModIdxCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("CurModIdxCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoCurModIdxCell%r"), injective{}()] @@ -1304,7 +1304,7 @@ module KWASM-LEMMAS symbol LblnoTypesCell{}() : SortTypesCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("TypesCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoTypesCell%r"), injective{}()] symbol LblnoValstackCell{}() : SortValstackCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("ValstackCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoValstackCell%r"), injective{}()] symbol LblnoWasmCell{}() : SortWasmCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("WasmCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoWasmCell%r"), injective{}()] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), klabel{}("notBool_"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,176)"), left{}(), format{}("%cnotBool%r %1"), function{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("notBool_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,176)"), left{}(), format{}("%cnotBool%r %1"), function{}()] symbol Lbloffset'EqlsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'OffsetArg'Unds'WasmInt{}(SortWasmInt{}) : SortOffsetArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,27,110,43)"), left{}(), format{}("%coffset=%r %1"), injective{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("ordChar"), hook{}("STRING.ord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1424,18,1424,69)"), left{}(), format{}("%cordChar%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblpadLeftBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("padLeftBytes"), hook{}("BYTES.padLeft"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1836,20,1836,95)"), left{}(), format{}("%cpadLeftBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] @@ -1640,17 +1640,17 @@ module KWASM-LEMMAS symbol LblsequenceStmts'LParUndsRParUnds'WASM'Unds'K'Unds'Stmts{}(SortStmts{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sequenceStmts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(274,18,274,53)"), left{}(), format{}("%csequenceStmts%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("signExtendBitRangeInt"), hook{}("INT.signExtendBitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(998,18,998,112)"), left{}(), format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblsignFloat'LParUndsRParUnds'FLOAT'Unds'Bool'Unds'Float{}(SortFloat{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("signFloat"), hook{}("FLOAT.sign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1217,19,1217,80)"), left{}(), format{}("%csignFloat%r %c(%r %1 %c)%r"), function{}()] - symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("signedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1736,25,1736,62)"), left{}(), format{}("%cSigned%r"), injective{}()] + symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("signedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1736,25,1736,62)"), left{}(), format{}("%cSigned%r"), injective{}()] hooked-symbol LblsinFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sinFloat"), hook{}("FLOAT.sin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1296,20,1296,87)"), left{}(), format{}("%csinFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), klabel{}("sizeList"), hook{}("LIST.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(742,18,742,121)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sizeMap"), hook{}("MAP.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(384,18,384,103)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'SET'Unds'Int'Unds'Set{}(SortSet{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("size"), hook{}("SET.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(604,18,604,80)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] symbol LblsqrtFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sqrtFloat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1305,20,1305,58)"), left{}(), format{}("%csqrtFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("srandInt"), hook{}("INT.srand"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1032,16,1032,64)"), left{}(), format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}()] - symbol LblstoreOpStore{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,66)"), left{}(), format{}("%cstore%r"), injective{}()] - symbol LblstoreOpStore16{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore16"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,24,106,66)"), left{}(), format{}("%cstore16%r"), injective{}()] - symbol LblstoreOpStore32{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,24,107,66)"), left{}(), format{}("%cstore32%r"), injective{}()] - symbol LblstoreOpStore8{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore8"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,24,105,66)"), left{}(), format{}("%cstore8%r"), injective{}()] + symbol LblstoreOpStore{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,66)"), left{}(), format{}("%cstore%r"), injective{}()] + symbol LblstoreOpStore16{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore16"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,24,106,66)"), left{}(), format{}("%cstore16%r"), injective{}()] + symbol LblstoreOpStore32{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,24,107,66)"), left{}(), format{}("%cstore32%r"), injective{}()] + symbol LblstoreOpStore8{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore8"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,24,105,66)"), left{}(), format{}("%cstore8%r"), injective{}()] symbol Lblstore'LBraUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'Int'Unds'Int'Unds'Number{}(SortInt{}, SortInt{}, SortNumber{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("110001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,22,955,51)"), left{}(), format{}("%cstore%r %c{%r %1 %2 %3 %c}%r"), injective{}()] symbol LblstructureModule'LParUndsCommUndsRParUnds'WASM-TEXT'Unds'ModuleDecl'Unds'Defns'Unds'OptionalId{}(SortDefns{}, SortOptionalId{}) : SortModuleDecl{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("structureModule"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(656,28,656,76)"), left{}(), format{}("%cstructureModule%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblstructureModules'LParUndsRParUnds'WASM-TEXT'Unds'Stmts'Unds'Stmts{}(SortStmts{}) : SortStmts{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("structureModules"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(650,22,650,58)"), left{}(), format{}("%cstructureModules%r %c(%r %1 %c)%r"), function{}()] @@ -1670,11 +1670,11 @@ module KWASM-LEMMAS symbol LblunfoldDefns'LParUndsRParUnds'WASM-TEXT'Unds'Defns'Unds'Defns{}(SortDefns{}) : SortDefns{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldDefns"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(392,22,392,71)"), left{}(), format{}("%cunfoldDefns%r %c(%r %1 %c)%r"), function{}()] symbol LblunfoldInstrs'LParUndsRParUnds'WASM-TEXT'Unds'Instrs'Unds'Instrs{}(SortInstrs{}) : SortInstrs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldInstrs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,24,558,67)"), left{}(), format{}("%cunfoldInstrs%r %c(%r %1 %c)%r"), function{}()] symbol LblunfoldStmts'LParUndsRParUnds'WASM-TEXT'Unds'Stmts'Unds'Stmts{}(SortStmts{}) : SortStmts{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldStmts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(391,22,391,71)"), left{}(), format{}("%cunfoldStmts%r %c(%r %1 %c)%r"), function{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("unsignedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1737,25,1737,66)"), left{}(), format{}("%cUnsigned%r"), injective{}()] + symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("unsignedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1737,25,1737,66)"), left{}(), format{}("%cUnsigned%r"), injective{}()] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("updateList"), hook{}("LIST.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,19,706,96)"), left{}(), format{}("%cupdateList%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("updateMap"), hook{}("MAP.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(335,18,335,91)"), left{}(), format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("values"), hook{}("MAP.values"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(376,19,376,76)"), left{}(), format{}("%cvalues%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), klabel{}("~Int_"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,18,931,172)"), left{}(), format{}("%c~Int%r %1"), function{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("~Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,18,931,172)"), left{}(), format{}("%c~Int%r %1"), function{}()] // generated axioms axiom{R} \exists{R} (Val:SortNumber{}, \equals{SortNumber{}, R} (Val:SortNumber{}, inj{SortInt{}, SortNumber{}} (From:SortInt{}))) [subsort{SortInt{}, SortNumber{}}()] // subsort diff --git a/test/regression-wasm/test-loops-vdefinition.kore b/test/regression-wasm/test-loops-vdefinition.kore index 860f3386a3..b2ac0766c9 100644 --- a/test/regression-wasm/test-loops-vdefinition.kore +++ b/test/regression-wasm/test-loops-vdefinition.kore @@ -445,9 +445,9 @@ module KWASM-LEMMAS hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), hook{}("BYTES.empty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1716,20,1716,69)"), left{}(), format{}("%c.Bytes%r"), function{}()] hooked-symbol Lbl'Stop'FuncDefCellMap{}() : SortFuncDefCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.FuncDefCellMap%r"), function{}()] hooked-symbol Lbl'Stop'GlobalInstCellMap{}() : SortGlobalInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.GlobalInstCellMap%r"), function{}()] - symbol Lbl'Stop'Identifier{}() : SortOptionalId{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Identifier"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,27,35,58)"), left{}(), format{}("%c%r"), injective{}()] + symbol Lbl'Stop'Identifier{}() : SortOptionalId{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".Identifier"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,27,35,58)"), left{}(), format{}("%c%r"), injective{}()] symbol Lbl'Stop'Int'Unds'WASM-DATA'Unds'OptionalInt{}() : SortOptionalInt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(226,34,226,39)"), left{}(), format{}("%c.Int%r"), injective{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(659,19,659,146)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(659,19,659,146)"), left{}(), format{}("%c.List%r"), function{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Defns'Unds'Defn'Unds'Defns'QuotRBraUnds'Defns{}() : SortDefns{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,27,59,65)"), left{}(), format{}("%c.Defns%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Instrs'Unds'Instr'Unds'Instrs'QuotRBraUnds'Instrs{}() : SortInstrs{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,27,58,65)"), left{}(), format{}("%c.Instrs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts'QuotRBraUnds'Stmts{}() : SortStmts{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,27,60,65)"), left{}(), format{}("%c.Stmts%r"), injective{}()] @@ -455,15 +455,15 @@ module KWASM-LEMMAS symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-DATA-COMMON-SYNTAX'Unds'DataString'Unds'WasmString'Unds'DataString'QuotRBraUnds'DataString{}() : SortDataString{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listWasmString\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,27,54,71)"), left{}(), format{}("%c.DataString%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-DATA-COMMON-SYNTAX'Unds'ElemSegment'Unds'Index'Unds'ElemSegment'QuotRBraUnds'ElemSegment{}() : SortElemSegment{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listIndex\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,28,75,62)"), left{}(), format{}("%c.ElemSegment%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'LocalDecls'Unds'LocalDecl'Unds'LocalDecls'QuotRBraUnds'LocalDecls{}() : SortLocalDecls{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listLocalDecl\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(216,27,216,77)"), left{}(), format{}("%c.LocalDecls%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listInt'QuotRBraUnds'Ints{}() : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listInt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%c.Ints%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listStmt'QuotRBraUnds'EmptyStmts{}() : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%c.EmptyStmts%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listValTypes'QuotRBraUnds'ValTypes{}() : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listValTypes\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%c.ValTypes%r"), injective{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,18,259,128)"), left{}(), format{}("%c.Map%r"), function{}()] + symbol Lbl'Stop'List'LBraQuot'listInt'QuotRBraUnds'Ints{}() : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".List{\"listInt\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%c.Ints%r"), injective{}()] + symbol Lbl'Stop'List'LBraQuot'listStmt'QuotRBraUnds'EmptyStmts{}() : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(".List{\"listStmt\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%c.EmptyStmts%r"), injective{}()] + symbol Lbl'Stop'List'LBraQuot'listValTypes'QuotRBraUnds'ValTypes{}() : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".List{\"listValTypes\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%c.ValTypes%r"), injective{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,18,259,128)"), left{}(), format{}("%c.Map%r"), function{}()] hooked-symbol Lbl'Stop'MemInstCellMap{}() : SortMemInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.MemInstCellMap%r"), function{}()] hooked-symbol Lbl'Stop'ModuleInstCellMap{}() : SortModuleInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.ModuleInstCellMap%r"), function{}()] symbol Lbl'Stop'Mut'Unds'WASM-DATA'Unds'Mut{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(314,20,314,25)"), left{}(), format{}("%c.Mut%r"), injective{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,122)"), left{}(), format{}("%c.Set%r"), function{}()] - symbol Lbl'Stop'String{}() : SortOptionalString{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".String"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,31,1383,65)"), left{}(), format{}("%c.String%r"), injective{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,122)"), left{}(), format{}("%c.Set%r"), function{}()] + symbol Lbl'Stop'String{}() : SortOptionalString{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(".String"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,31,1383,65)"), left{}(), format{}("%c.String%r"), injective{}()] hooked-symbol Lbl'Stop'TabInstCellMap{}() : SortTabInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.TabInstCellMap%r"), function{}()] symbol Lbl'Stop'Type'Unds'WASM-DATA'Unds'Type{}() : SortType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(260,21,260,27)"), left{}(), format{}("%c.Type%r"), injective{}()] symbol Lbl'Stop'ValStack'Unds'WASM-DATA'Unds'ValStack{}() : SortValStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(408,25,408,35)"), left{}(), format{}("%c.ValStack%r"), injective{}()] @@ -566,18 +566,18 @@ module KWASM-LEMMAS hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Bytes"), hook{}("BYTES.int2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1766,20,1766,104)"), left{}(), format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2Float'LParUndsCommUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortFloat{} [latex{}("{\\\\it{}Int2Float}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Float"), hook{}("FLOAT.int2float"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1342,20,1342,131)"), left{}(), format{}("%cInt2Float%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Int2String"), hook{}("STRING.int2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1516,21,1516,103)"), left{}(), format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,20,678,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,19,725,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,19,667,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(282,20,282,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,18,301,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,20,678,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,19,725,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,19,667,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(282,20,282,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,18,301,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol LblMemInstCellMap'Coln'in'Unds'keys{}(SortMAddrCell{}, SortMemInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblMemInstCellMapItem{}(SortMAddrCell{}, SortMemInstCell{}) : SortMemInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] hooked-symbol LblModuleInstCellMap'Coln'in'Unds'keys{}(SortModIdxCell{}, SortModuleInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblModuleInstCellMapItem{}(SortModIdxCell{}, SortModuleInstCell{}) : SortModuleInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Base'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'Int{}(SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("String2Base"), hook{}("STRING.string2base"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1518,21,1518,98)"), left{}(), format{}("%cString2Base%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblString2Bool'LParUndsRParUnds'STRING-COMMON'Unds'Bool'Unds'String{}(SortString{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1473,19,1473,48)"), left{}(), format{}("%cString2Bool%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Bytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'String{}(SortString{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bytes"), hook{}("BYTES.string2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1778,20,1778,88)"), left{}(), format{}("%cString2Bytes%r %c(%r %1 %c)%r"), function{}()] @@ -586,24 +586,24 @@ module KWASM-LEMMAS hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Int"), hook{}("STRING.string2int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1515,21,1515,91)"), left{}(), format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblTabInstCellMap'Coln'in'Unds'keys{}(SortTAddrCell{}, SortTabInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblTabInstCellMapItem{}(SortTAddrCell{}, SortTabInstCell{}) : SortTabInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] - symbol LblWasmInt{}(SortWasmIntToken{}) : SortWasmInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0"), klabel{}("WasmInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,24,81,78)"), left{}(), format{}("%1"), avoid{}(), function{}()] + symbol LblWasmInt{}(SortWasmIntToken{}) : SortWasmInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), symbol'Kywd'{}("WasmInt"), priorities{}(), right{}(), terminals{}("0"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,24,81,78)"), left{}(), format{}("%1"), avoid{}(), function{}()] symbol LblWasmIntToken2Int'LParUndsRParUnds'WASM-TEXT'Unds'Int'Unds'WasmIntToken{}(SortWasmIntToken{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntToken2Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(350,23,350,72)"), left{}(), format{}("%cWasmIntToken2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblWasmIntToken2String'LParUndsRParUnds'WASM-TEXT'Unds'String'Unds'WasmIntToken{}(SortWasmIntToken{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntToken2String"), hook{}("STRING.token2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(348,23,348,111)"), left{}(), format{}("%cWasmIntToken2String%r %c(%r %1 %c)%r"), function{}()] symbol LblWasmIntTokenString2Int'LParUndsRParUnds'WASM-TEXT'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntTokenString2Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,23,349,72)"), left{}(), format{}("%cWasmIntTokenString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.rem roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.rem"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,20,1248,182)"), left{}(Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c%%Float%r %2"), function{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_%Int_"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,18,940,170)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), klabel{}("_&Int_"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,18,951,182)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_%Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,18,940,170)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_&Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,18,951,182)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] symbol Lbl'UndsLPar'elem'UndsRParUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TableSpec'Unds'TableElemType'Unds'ElemSegment{}(SortTableElemType{}, SortElemSegment{}) : SortTableSpec{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("01101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(225,26,225,65)"), left{}(), format{}("%1 %c(%r %celem%r %2 %c)%r"), injective{}()] hooked-symbol Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.mul roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,20,1246,184)"), left{}(Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c*Float%r %2"), function{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), klabel{}("_*Int_"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,18,936,181)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_*Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,18,936,181)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] symbol Lbl'UndsPlusPlusUndsUnds'WASM-DATA'Unds'ValStack'Unds'ValStack'Unds'ValStack{}(SortValStack{}, SortValStack{}) : SortValStack{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(410,25,410,69)"), left{}(), format{}("%1 %c++%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), hook{}("BYTES.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1863,20,1863,89)"), left{}(), format{}("%1 %c+Bytes%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(fp.add roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,20,1250,181)"), left{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c+Float%r %2"), function{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), klabel{}("_+Int_"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,18,945,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_+Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,18,945,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1406,21,1406,139)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), format{}("%1 %c+String%r %2"), function{}()] symbol Lbl'UndsPlusUndsUnds'WASM-DATA'Unds'ValTypes'Unds'ValTypes'Unds'ValTypes{}(SortValTypes{}, SortValTypes{}) : SortValTypes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(267,25,267,68)"), left{}(), format{}("%1 %c+%r %2"), function{}()] hooked-symbol Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(fp.sub roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1251,20,1251,181)"), left{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c-Float%r %2"), function{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), klabel{}("_-Int_"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_-Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,18,322,120)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] symbol Lbl'UndsStopUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'FValType'Unds'LoadOpM{}(SortFValType{}, SortLoadOpM{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,27,106,46)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] symbol Lbl'UndsStopUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'FValType'Unds'StoreOpM{}(SortFValType{}, SortStoreOpM{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,27,104,48)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] @@ -620,50 +620,50 @@ module KWASM-LEMMAS symbol Lbl'UndsStopUndsUndsUndsUnds'WASM-NUMERIC'Unds'Val'Unds'IValType'Unds'IRelOp'Unds'Int'Unds'Int{}(SortIValType{}, SortIRelOp{}, SortInt{}, SortInt{}) : SortVal{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), priorities{}(), right{}(), terminals{}("01000"), klabel{}("intRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,20,324,81)"), left{}(), format{}("%1 %c.%r %2 %3 %4"), function{}()] symbol Lbl'UndsStopUndsUndsUndsUnds'WASM'Unds'Instr'Unds'IValType'Unds'StoreOp'Unds'Int'Unds'Int{}(SortIValType{}, SortStoreOp{}, SortInt{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("01000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,22,953,49)"), left{}(), format{}("%1 %c.%r %2 %3 %4"), injective{}()] hooked-symbol Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.div roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.div"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,20,1247,184)"), left{}(Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c/Float%r %2"), function{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_/Int_"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(939,18,939,172)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_/Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(939,18,939,172)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] symbol Lbl'UndsColnUndsUnds'WASM-DATA'Unds'ValStack'Unds'Val'Unds'ValStack{}(SortVal{}, SortValStack{}) : SortValStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(409,25,409,46)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ll_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shlInt"), terminals{}("010"), klabel{}("_<=Float%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), klabel{}("_>=Int_"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1009,19,1009,176)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>=Int_"), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1009,19,1009,176)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1553,19,1553,82)"), left{}(), format{}("%1 %c>=String%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), klabel{}("_>>Int_"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,18,948,172)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>>Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,18,948,172)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'Float'UndsUnds'FLOAT'Unds'Bool'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fg.gt"), right{}(), terminals{}("010"), hook{}("FLOAT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1325,19,1325,147)"), left{}(Lbl'Unds-GT-'Float'UndsUnds'FLOAT'Unds'Bool'Unds'Float'Unds'Float{}()), format{}("%1 %c>Float%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), klabel{}("_>Int_"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,19,1010,171)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>Int_"), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,19,1010,171)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1552,19,1552,82)"), left{}(), format{}("%1 %c>String%r %2"), function{}()] hooked-symbol Lbl'Unds'FuncDefCellMap'Unds'{}(SortFuncDefCellMap{}, SortFuncDefCellMap{}) : SortFuncDefCellMap{} [unit{}(Lbl'Stop'FuncDefCellMap{}()), element{}(LblFuncDefCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'Unds'GlobalInstCellMap'Unds'{}(SortGlobalInstCellMap{}, SortGlobalInstCellMap{}) : SortGlobalInstCellMap{} [unit{}(Lbl'Stop'GlobalInstCellMap{}()), element{}(LblGlobalInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(651,19,651,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,18,251,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(651,19,651,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,18,251,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'MemInstCellMap'Unds'{}(SortMemInstCellMap{}, SortMemInstCellMap{}) : SortMemInstCellMap{} [unit{}(Lbl'Stop'MemInstCellMap{}()), element{}(LblMemInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'Unds'ModuleInstCellMap'Unds'{}(SortModuleInstCellMap{}, SortModuleInstCellMap{}) : SortModuleInstCellMap{} [unit{}(Lbl'Stop'ModuleInstCellMap{}()), element{}(LblModuleInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'TabInstCellMap'Unds'{}(SortTabInstCellMap{}, SortTabInstCellMap{}) : SortTabInstCellMap{} [unit{}(Lbl'Stop'TabInstCellMap{}()), element{}(LblTabInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), hook{}("BYTES.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,20,1789,90)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,19,687,107)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,18,310,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,18,310,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101"), hook{}("BYTES.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1798,18,1798,62)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,20,292,138)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), klabel{}("_^%Int__"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(934,18,934,138)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^%Int__"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(934,18,934,138)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] hooked-symbol Lbl'UndsXor-'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}^{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), right{}(), terminals{}("010"), hook{}("FLOAT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,20,1244,98)"), left{}(Lbl'UndsXor-'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c^Float%r %2"), function{}()] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), klabel{}("_^Int_"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,18,933,177)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,18,933,177)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Defns'Unds'Defn'Unds'Defns{}(SortDefn{}, SortDefns{}) : SortDefns{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,27,59,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Instrs'Unds'Instr'Unds'Instrs{}(SortInstr{}, SortInstrs{}) : SortInstrs{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,27,58,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts{}(SortStmt{}, SortStmts{}) : SortStmts{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,27,60,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] @@ -688,98 +688,98 @@ module KWASM-LEMMAS symbol Lbl'UndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TableType'Unds'TextLimits'Unds'TableElemType{}(SortTextLimits{}, SortTableElemType{}) : SortTableType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(230,26,230,49)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TextLimits'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortTextLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(157,33,157,39)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'FuncSpec'Unds'TypeUse'Unds'LocalDecls'Unds'Instrs{}(SortTypeUse{}, SortLocalDecls{}, SortInstrs{}) : SortFuncSpec{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(204,25,204,49)"), left{}(), format{}("%1 %2 %3"), injective{}()] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andBool_"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(823,19,823,189)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andThenBool_"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(824,19,824,151)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(823,19,823,189)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andThenBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(824,19,824,151)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] symbol Lbl'Unds'appendDefn'UndsUnds'WASM-TEXT'Unds'Defns'Unds'Defns'Unds'Defn{}(SortDefns{}, SortDefn{}) : SortDefns{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(403,22,403,55)"), left{}(), format{}("%1 %cappendDefn%r %2"), function{}()] symbol Lbl'Unds'appendInstrs'UndsUnds'WASM-TEXT'Unds'Instrs'Unds'Instrs'Unds'Instrs{}(SortInstrs{}, SortInstrs{}) : SortInstrs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(565,23,565,66)"), left{}(), format{}("%1 %cappendInstrs%r %2"), function{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_divInt_"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(942,18,942,121)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_divInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(942,18,942,121)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1021,19,1021,52)"), left{}(), format{}("%1 %cdividesInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_impliesBool_"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,19,828,150)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_impliesBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,19,828,150)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(734,19,734,101)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(368,19,368,93)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_modInt_"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(943,18,943,121)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orBool_"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(826,19,826,184)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orElseBool_"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(827,19,827,148)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_modInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(943,18,943,121)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(826,19,826,184)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orElseBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(827,19,827,148)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] symbol Lbl'Unds'up'Slsh'Int'UndsUnds'WASM'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1195,20,1195,46)"), left{}(), format{}("%1 %cup/Int%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_xorBool_"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(825,19,825,143)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), klabel{}("_xorInt_"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,188)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(268,18,268,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), klabel{}("_|Int_"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,179)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(825,19,825,143)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorInt_"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,188)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(268,18,268,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|Int_"), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,179)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,18,558,88)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] - symbol LblaAbs{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aAbs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,57)"), left{}(), format{}("%cabs%r"), injective{}()] - symbol LblaBlock{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aBlock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,22,440,84)"), left{}(), format{}("%c#block%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaBr{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(452,22,452,53)"), left{}(), format{}("%c#br%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaBr'Unds'if{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr_if"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,22,460,66)"), left{}(), format{}("%c#br_if%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaBr'Unds'table{}(SortInts{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr_table"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,22,469,73)"), left{}(), format{}("%c#br_table%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCall{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,22,777,55)"), left{}(), format{}("%c#call%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCall'Unds'indirect{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aCall_indirect"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(789,22,789,82)"), left{}(), format{}("%c#call_indirect%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCeil{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aCeil"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,22,22,57)"), left{}(), format{}("%cceil%r"), injective{}()] - symbol LblaClz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aClz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,22,13,52)"), left{}(), format{}("%cclz%r"), injective{}()] - symbol LblaConvert'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,72)"), left{}(), format{}("%cconvert_i32_s%r"), injective{}()] - symbol LblaConvert'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,72)"), left{}(), format{}("%cconvert_i32_u%r"), injective{}()] - symbol LblaConvert'Unds'i64'Unds's{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i64_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,72)"), left{}(), format{}("%cconvert_i64_s%r"), injective{}()] - symbol LblaConvert'Unds'i64'Unds'u{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i64_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,72)"), left{}(), format{}("%cconvert_i64_u%r"), injective{}()] - symbol LblaCtz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aCtz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,52)"), left{}(), format{}("%cctz%r"), injective{}()] - symbol LblaCvtOp{}(SortValType{}, SortCvtOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aCvtOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,27,83,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaDataDefn{}(SortInt{}, SortInstrs{}, SortBytes{}) : SortDataDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aDataDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1174,25,1174,101)"), left{}(), format{}("%c#data%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaDemote'Unds'f64{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aDemote_f64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,66)"), left{}(), format{}("%cdemote_f64%r"), injective{}()] - symbol LblaDrop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aDrop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,27,84,81)"), left{}(), format{}("%cdrop%r"), injective{}()] - symbol LblaElemDefn{}(SortInt{}, SortInstrs{}, SortInts{}) : SortElemDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aElemDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,25,1143,107)"), left{}(), format{}("%c#elem%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaEqz{}() : SortTestOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aEqz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,23,53,50)"), left{}(), format{}("%ceqz%r"), injective{}()] - symbol LblaExportDefn{}(SortWasmString{}, SortInt{}) : SortExportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aExportDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1223,27,1223,95)"), left{}(), format{}("%c#export%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaExtend'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aExtend_i32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,70)"), left{}(), format{}("%cextend_i32_s%r"), injective{}()] - symbol LblaExtend'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aExtend_i32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,70)"), left{}(), format{}("%cextend_i32_u%r"), injective{}()] - symbol LblaFBinOp{}(SortFValType{}, SortFBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFBinOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,27,79,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFConst{}(SortFValType{}, SortNumber{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0110"), klabel{}("aFConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,27,75,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] - symbol LblaFRelOp{}(SortFValType{}, SortFRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,27,82,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFUnOp{}(SortFValType{}, SortFUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFUnOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,27,77,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFloor{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aFloor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,57)"), left{}(), format{}("%cfloor%r"), injective{}()] - symbol LblaFuncDefn{}(SortInt{}, SortVecType{}, SortInstrs{}, SortFuncMetadata{}) : SortFuncDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("aFuncDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(689,25,689,123)"), left{}(), format{}("%c#func%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol LblaFuncDesc{}(SortOptionalId{}, SortInt{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aFuncDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,27,1244,112)"), left{}(), format{}("%c#funcDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaFuncType{}(SortVecType{}, SortVecType{}) : SortFuncType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFuncType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,25,248,72)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] - symbol LblaGlobal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aGlobal.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(582,22,582,76)"), left{}(), format{}("%c#global.get%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaGlobal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aGlobal.set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(583,22,583,76)"), left{}(), format{}("%c#global.set%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaGlobalDefn{}(SortGlobalType{}, SortInstrs{}, SortOptionalId{}) : SortGlobalDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aGlobalDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(551,27,551,117)"), left{}(), format{}("%c#global%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaGlobalDesc{}(SortOptionalId{}, SortGlobalType{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aGlobalDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,27,1245,112)"), left{}(), format{}("%c#globalDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaGlobalType{}(SortMut{}, SortValType{}) : SortGlobalType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("00"), klabel{}("aGlobalType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(548,27,548,67)"), left{}(), format{}("%1 %2"), injective{}()] - symbol LblaGrow{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aGrow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,27,90,81)"), left{}(), format{}("%cmemory.grow%r"), injective{}()] - symbol LblaIBinOp{}(SortIValType{}, SortIBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIBinOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,27,78,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIConst{}(SortIValType{}, SortWasmInt{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0110"), klabel{}("aIConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,27,74,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] - symbol LblaIRelOp{}(SortIValType{}, SortIRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,27,81,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIUnOp{}(SortIValType{}, SortIUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIUnOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,27,76,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIf{}(SortVecType{}, SortInstrs{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("aIf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(478,22,478,112)"), left{}(), format{}("%c#if%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol LblaImportDefn{}(SortWasmString{}, SortWasmString{}, SortImportDesc{}) : SortImportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aImportDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,27,1243,112)"), left{}(), format{}("%c#import%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaLoad{}(SortValType{}, SortLoadOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,22,1001,81)"), left{}(), format{}("%c#load%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaLocal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,22,522,74)"), left{}(), format{}("%c#local.get%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLocal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,22,523,74)"), left{}(), format{}("%c#local.set%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLocal'Stop'tee{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.tee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,22,524,74)"), left{}(), format{}("%c#local.tee%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLoop{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aLoop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,22,488,82)"), left{}(), format{}("%c#loop%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaMemoryDefn{}(SortLimits{}, SortOptionalId{}) : SortMemoryDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aMemoryDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,27,916,101)"), left{}(), format{}("%c#memory%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaMemoryDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aMemoryDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,27,1247,112)"), left{}(), format{}("%c#memoryDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaModuleDecl{}(SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortModuleMetadata{}) : SortModuleDecl{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101010101010101"), klabel{}("aModuleDecl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1375,27,1375,239)"), left{}(), format{}("%c#module%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c)%r"), injective{}()] - symbol LblaNearest{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNearest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,57)"), left{}(), format{}("%cnearest%r"), injective{}()] - symbol LblaNeg{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNeg"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,22,19,57)"), left{}(), format{}("%cneg%r"), injective{}()] - symbol LblaNop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,27,86,80)"), left{}(), format{}("%cnop%r"), injective{}()] - symbol LblaPopcnt{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aPopcnt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,22,15,55)"), left{}(), format{}("%cpopcnt%r"), injective{}()] - symbol LblaPromote'Unds'f32{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aPromote_f32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,68)"), left{}(), format{}("%cpromote_f32%r"), injective{}()] - symbol LblaReturn{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aReturn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,27,88,83)"), left{}(), format{}("%creturn%r"), injective{}()] - symbol LblaSelect{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSelect"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,27,85,83)"), left{}(), format{}("%cselect%r"), injective{}()] - symbol LblaSize{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSize"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,27,89,81)"), left{}(), format{}("%cmemory.size%r"), injective{}()] - symbol LblaSqrt{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSqrt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,22,20,57)"), left{}(), format{}("%csqrt%r"), injective{}()] - symbol LblaStartDefn{}(SortInt{}) : SortStartDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aStartDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,26,1206,65)"), left{}(), format{}("%c#start%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaStore{}(SortValType{}, SortStoreOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,22,952,84)"), left{}(), format{}("%c#store%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaTableDefn{}(SortLimits{}, SortOptionalId{}) : SortTableDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTableDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,26,873,99)"), left{}(), format{}("%c#table%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaTableDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTableDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,27,1246,112)"), left{}(), format{}("%c#tableDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaTestOp{}(SortIValType{}, SortTestOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aTestOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,27,80,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaTrunc{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,22,23,57)"), left{}(), format{}("%ctrunc%r"), injective{}()] - symbol LblaTrunc'Unds'f32'Unds's{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,68)"), left{}(), format{}("%ctrunc_f32_s%r"), injective{}()] - symbol LblaTrunc'Unds'f32'Unds'u{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,68)"), left{}(), format{}("%ctrunc_f32_u%r"), injective{}()] - symbol LblaTrunc'Unds'f64'Unds's{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f64_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,68)"), left{}(), format{}("%ctrunc_f64_s%r"), injective{}()] - symbol LblaTrunc'Unds'f64'Unds'u{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f64_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,68)"), left{}(), format{}("%ctrunc_f64_u%r"), injective{}()] - symbol LblaTypeDefn{}(SortFuncType{}, SortOptionalId{}) : SortTypeDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTypeDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,25,660,95)"), left{}(), format{}("%c#type%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaUnreachable{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aUnreachable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,27,87,88)"), left{}(), format{}("%cunreachable%r"), injective{}()] - symbol LblaVecType{}(SortValTypes{}) : SortVecType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("101"), klabel{}("aVecType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(245,25,245,67)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] - symbol LblaWrap'Unds'i64{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aWrap_i64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,62)"), left{}(), format{}("%cwrap_i64%r"), injective{}()] + symbol LblaAbs{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aAbs"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,57)"), left{}(), format{}("%cabs%r"), injective{}()] + symbol LblaBlock{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBlock"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,22,440,84)"), left{}(), format{}("%c#block%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaBr{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(452,22,452,53)"), left{}(), format{}("%c#br%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaBr'Unds'if{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr_if"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,22,460,66)"), left{}(), format{}("%c#br_if%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaBr'Unds'table{}(SortInts{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr_table"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,22,469,73)"), left{}(), format{}("%c#br_table%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCall{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCall"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,22,777,55)"), left{}(), format{}("%c#call%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCall'Unds'indirect{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCall_indirect"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(789,22,789,82)"), left{}(), format{}("%c#call_indirect%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCeil{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aCeil"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,22,22,57)"), left{}(), format{}("%cceil%r"), injective{}()] + symbol LblaClz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aClz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,22,13,52)"), left{}(), format{}("%cclz%r"), injective{}()] + symbol LblaConvert'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,72)"), left{}(), format{}("%cconvert_i32_s%r"), injective{}()] + symbol LblaConvert'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,72)"), left{}(), format{}("%cconvert_i32_u%r"), injective{}()] + symbol LblaConvert'Unds'i64'Unds's{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i64_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,72)"), left{}(), format{}("%cconvert_i64_s%r"), injective{}()] + symbol LblaConvert'Unds'i64'Unds'u{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i64_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,72)"), left{}(), format{}("%cconvert_i64_u%r"), injective{}()] + symbol LblaCtz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aCtz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,52)"), left{}(), format{}("%cctz%r"), injective{}()] + symbol LblaCvtOp{}(SortValType{}, SortCvtOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCvtOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,27,83,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaDataDefn{}(SortInt{}, SortInstrs{}, SortBytes{}) : SortDataDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aDataDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1174,25,1174,101)"), left{}(), format{}("%c#data%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaDemote'Unds'f64{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aDemote_f64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,66)"), left{}(), format{}("%cdemote_f64%r"), injective{}()] + symbol LblaDrop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aDrop"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,27,84,81)"), left{}(), format{}("%cdrop%r"), injective{}()] + symbol LblaElemDefn{}(SortInt{}, SortInstrs{}, SortInts{}) : SortElemDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aElemDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,25,1143,107)"), left{}(), format{}("%c#elem%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaEqz{}() : SortTestOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aEqz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,23,53,50)"), left{}(), format{}("%ceqz%r"), injective{}()] + symbol LblaExportDefn{}(SortWasmString{}, SortInt{}) : SortExportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aExportDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1223,27,1223,95)"), left{}(), format{}("%c#export%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaExtend'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aExtend_i32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,70)"), left{}(), format{}("%cextend_i32_s%r"), injective{}()] + symbol LblaExtend'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aExtend_i32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,70)"), left{}(), format{}("%cextend_i32_u%r"), injective{}()] + symbol LblaFBinOp{}(SortFValType{}, SortFBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFBinOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,27,79,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFConst{}(SortFValType{}, SortNumber{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFConst"), priorities{}(), right{}(), terminals{}("0110"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,27,75,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] + symbol LblaFRelOp{}(SortFValType{}, SortFRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFRelOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,27,82,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFUnOp{}(SortFValType{}, SortFUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFUnOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,27,77,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFloor{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aFloor"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,57)"), left{}(), format{}("%cfloor%r"), injective{}()] + symbol LblaFuncDefn{}(SortInt{}, SortVecType{}, SortInstrs{}, SortFuncMetadata{}) : SortFuncDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFuncDefn"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(689,25,689,123)"), left{}(), format{}("%c#func%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol LblaFuncDesc{}(SortOptionalId{}, SortInt{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFuncDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,27,1244,112)"), left{}(), format{}("%c#funcDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaFuncType{}(SortVecType{}, SortVecType{}) : SortFuncType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("aFuncType"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,25,248,72)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] + symbol LblaGlobal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobal.get"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(582,22,582,76)"), left{}(), format{}("%c#global.get%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaGlobal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobal.set"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(583,22,583,76)"), left{}(), format{}("%c#global.set%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaGlobalDefn{}(SortGlobalType{}, SortInstrs{}, SortOptionalId{}) : SortGlobalDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(551,27,551,117)"), left{}(), format{}("%c#global%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaGlobalDesc{}(SortOptionalId{}, SortGlobalType{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,27,1245,112)"), left{}(), format{}("%c#globalDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaGlobalType{}(SortMut{}, SortValType{}) : SortGlobalType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalType"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(548,27,548,67)"), left{}(), format{}("%1 %2"), injective{}()] + symbol LblaGrow{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGrow"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,27,90,81)"), left{}(), format{}("%cmemory.grow%r"), injective{}()] + symbol LblaIBinOp{}(SortIValType{}, SortIBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIBinOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,27,78,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIConst{}(SortIValType{}, SortWasmInt{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIConst"), priorities{}(), right{}(), terminals{}("0110"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,27,74,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] + symbol LblaIRelOp{}(SortIValType{}, SortIRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIRelOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,27,81,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIUnOp{}(SortIValType{}, SortIUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIUnOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,27,76,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIf{}(SortVecType{}, SortInstrs{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIf"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(478,22,478,112)"), left{}(), format{}("%c#if%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol LblaImportDefn{}(SortWasmString{}, SortWasmString{}, SortImportDesc{}) : SortImportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aImportDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,27,1243,112)"), left{}(), format{}("%c#import%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaLoad{}(SortValType{}, SortLoadOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLoad"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,22,1001,81)"), left{}(), format{}("%c#load%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaLocal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.get"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,22,522,74)"), left{}(), format{}("%c#local.get%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLocal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.set"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,22,523,74)"), left{}(), format{}("%c#local.set%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLocal'Stop'tee{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.tee"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,22,524,74)"), left{}(), format{}("%c#local.tee%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLoop{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLoop"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,22,488,82)"), left{}(), format{}("%c#loop%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaMemoryDefn{}(SortLimits{}, SortOptionalId{}) : SortMemoryDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aMemoryDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,27,916,101)"), left{}(), format{}("%c#memory%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaMemoryDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aMemoryDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,27,1247,112)"), left{}(), format{}("%c#memoryDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaModuleDecl{}(SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortModuleMetadata{}) : SortModuleDecl{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aModuleDecl"), priorities{}(), right{}(), terminals{}("110101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1375,27,1375,239)"), left{}(), format{}("%c#module%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c)%r"), injective{}()] + symbol LblaNearest{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aNearest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,57)"), left{}(), format{}("%cnearest%r"), injective{}()] + symbol LblaNeg{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aNeg"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,22,19,57)"), left{}(), format{}("%cneg%r"), injective{}()] + symbol LblaNop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aNop"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,27,86,80)"), left{}(), format{}("%cnop%r"), injective{}()] + symbol LblaPopcnt{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aPopcnt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,22,15,55)"), left{}(), format{}("%cpopcnt%r"), injective{}()] + symbol LblaPromote'Unds'f32{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aPromote_f32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,68)"), left{}(), format{}("%cpromote_f32%r"), injective{}()] + symbol LblaReturn{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aReturn"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,27,88,83)"), left{}(), format{}("%creturn%r"), injective{}()] + symbol LblaSelect{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aSelect"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,27,85,83)"), left{}(), format{}("%cselect%r"), injective{}()] + symbol LblaSize{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aSize"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,27,89,81)"), left{}(), format{}("%cmemory.size%r"), injective{}()] + symbol LblaSqrt{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aSqrt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,22,20,57)"), left{}(), format{}("%csqrt%r"), injective{}()] + symbol LblaStartDefn{}(SortInt{}) : SortStartDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aStartDefn"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,26,1206,65)"), left{}(), format{}("%c#start%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaStore{}(SortValType{}, SortStoreOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aStore"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,22,952,84)"), left{}(), format{}("%c#store%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaTableDefn{}(SortLimits{}, SortOptionalId{}) : SortTableDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTableDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,26,873,99)"), left{}(), format{}("%c#table%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaTableDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTableDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,27,1246,112)"), left{}(), format{}("%c#tableDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaTestOp{}(SortIValType{}, SortTestOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTestOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,27,80,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaTrunc{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,22,23,57)"), left{}(), format{}("%ctrunc%r"), injective{}()] + symbol LblaTrunc'Unds'f32'Unds's{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,68)"), left{}(), format{}("%ctrunc_f32_s%r"), injective{}()] + symbol LblaTrunc'Unds'f32'Unds'u{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,68)"), left{}(), format{}("%ctrunc_f32_u%r"), injective{}()] + symbol LblaTrunc'Unds'f64'Unds's{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f64_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,68)"), left{}(), format{}("%ctrunc_f64_s%r"), injective{}()] + symbol LblaTrunc'Unds'f64'Unds'u{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f64_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,68)"), left{}(), format{}("%ctrunc_f64_u%r"), injective{}()] + symbol LblaTypeDefn{}(SortFuncType{}, SortOptionalId{}) : SortTypeDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTypeDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,25,660,95)"), left{}(), format{}("%c#type%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaUnreachable{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aUnreachable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,27,87,88)"), left{}(), format{}("%cunreachable%r"), injective{}()] + symbol LblaVecType{}(SortValTypes{}) : SortVecType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("aVecType"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(245,25,245,67)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] + symbol LblaWrap'Unds'i64{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aWrap_i64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,62)"), left{}(), format{}("%cwrap_i64%r"), injective{}()] hooked-symbol LblabsFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fp.abs"), right{}(), terminals{}("1101"), klabel{}("absFloat"), hook{}("FLOAT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1289,20,1289,105)"), left{}(), format{}("%cabsFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), right{}(), terminals{}("1101"), klabel{}("absInt"), hook{}("INT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(972,18,972,123)"), left{}(), format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblacosFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("acosFloat"), hook{}("FLOAT.acos"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1300,20,1300,76)"), left{}(), format{}("%cacosFloat%r %c(%r %1 %c)%r"), function{}()] @@ -795,7 +795,7 @@ module KWASM-LEMMAS hooked-symbol LblasinFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("asinFloat"), hook{}("FLOAT.asin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1299,20,1299,76)"), left{}(), format{}("%casinFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblatan2Float'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("atan2Float"), hook{}("FLOAT.atan2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1302,20,1302,77)"), left{}(), format{}("%catan2Float%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblatanFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("atanFloat"), hook{}("FLOAT.atan"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1301,20,1301,88)"), left{}(), format{}("%catanFloat%r %c(%r %1 %c)%r"), function{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("bigEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1727,25,1727,61)"), left{}(), format{}("%cBE%r"), injective{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("bigEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1727,25,1727,61)"), left{}(), format{}("%cBE%r"), injective{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("bitRangeInt"), hook{}("INT.bitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(997,18,997,102)"), left{}(), format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] symbol Lblblock'UndsUndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,27,121,78)"), left{}(), format{}("%cblock%r %1 %2 %3 %cend%r %4"), injective{}()] symbol Lblbr'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,36)"), left{}(), format{}("%cbr%r %1"), injective{}()] @@ -821,28 +821,28 @@ module KWASM-LEMMAS hooked-symbol LblexpFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("expFloat"), hook{}("FLOAT.exp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,20,1294,87)"), left{}(), format{}("%cexpFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblexponentBitsFloat'LParUndsRParUnds'FLOAT'Unds'Int'Unds'Float{}(SortFloat{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("exponentBitsFloat"), hook{}("FLOAT.exponentBits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1200,18,1200,90)"), left{}(), format{}("%cexponentBitsFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblexponentFloat'LParUndsRParUnds'FLOAT'Unds'Int'Unds'Float{}(SortFloat{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("exponentFloat"), hook{}("FLOAT.exponent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1208,18,1208,82)"), left{}(), format{}("%cexponentFloat%r %c(%r %1 %c)%r"), function{}()] - symbol Lblf32{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("f32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,51)"), left{}(), format{}("%cf32%r"), injective{}()] - symbol Lblf64{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("f64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,55,87,81)"), left{}(), format{}("%cf64%r"), injective{}()] + symbol Lblf32{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("f32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,51)"), left{}(), format{}("%cf32%r"), injective{}()] + symbol Lblf64{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("f64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,55,87,81)"), left{}(), format{}("%cf64%r"), injective{}()] hooked-symbol LblfillList'LParUndsCommUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("fillList"), hook{}("LIST.fill"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(715,19,715,99)"), left{}(), format{}("%cfillList%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] hooked-symbol LblfindChar'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findChar"), hook{}("STRING.findChar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1460,18,1460,115)"), left{}(), format{}("%cfindChar%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblfindString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findString"), hook{}("STRING.find"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1449,18,1449,110)"), left{}(), format{}("%cfindString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblfloatAdd{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatAdd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,23,44,54)"), left{}(), format{}("%cadd%r"), injective{}()] - symbol LblfloatCopysign{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatCopysign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,23,50,64)"), left{}(), format{}("%ccopysign%r"), injective{}()] - symbol LblfloatDiv{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatDiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,23,47,54)"), left{}(), format{}("%cdiv%r"), injective{}()] - symbol LblfloatEq{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatEq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,23,72,52)"), left{}(), format{}("%ceq%r"), injective{}()] - symbol LblfloatGe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatGe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,23,71,52)"), left{}(), format{}("%cge%r"), injective{}()] - symbol LblfloatGt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatGt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,23,69,52)"), left{}(), format{}("%cgt%r"), injective{}()] - symbol LblfloatLe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatLe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,23,70,52)"), left{}(), format{}("%cle%r"), injective{}()] - symbol LblfloatLt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatLt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,23,68,52)"), left{}(), format{}("%clt%r"), injective{}()] - symbol LblfloatMax{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,54)"), left{}(), format{}("%cmax%r"), injective{}()] - symbol LblfloatMin{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,23,48,54)"), left{}(), format{}("%cmin%r"), injective{}()] - symbol LblfloatMul{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,23,46,54)"), left{}(), format{}("%cmul%r"), injective{}()] - symbol LblfloatNe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatNe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,23,73,52)"), left{}(), format{}("%cne%r"), injective{}()] - symbol LblfloatSub{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatSub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,23,45,54)"), left{}(), format{}("%csub%r"), injective{}()] + symbol LblfloatAdd{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatAdd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,23,44,54)"), left{}(), format{}("%cadd%r"), injective{}()] + symbol LblfloatCopysign{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatCopysign"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,23,50,64)"), left{}(), format{}("%ccopysign%r"), injective{}()] + symbol LblfloatDiv{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatDiv"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,23,47,54)"), left{}(), format{}("%cdiv%r"), injective{}()] + symbol LblfloatEq{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatEq"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,23,72,52)"), left{}(), format{}("%ceq%r"), injective{}()] + symbol LblfloatGe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatGe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,23,71,52)"), left{}(), format{}("%cge%r"), injective{}()] + symbol LblfloatGt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatGt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,23,69,52)"), left{}(), format{}("%cgt%r"), injective{}()] + symbol LblfloatLe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatLe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,23,70,52)"), left{}(), format{}("%cle%r"), injective{}()] + symbol LblfloatLt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatLt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,23,68,52)"), left{}(), format{}("%clt%r"), injective{}()] + symbol LblfloatMax{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMax"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,54)"), left{}(), format{}("%cmax%r"), injective{}()] + symbol LblfloatMin{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMin"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,23,48,54)"), left{}(), format{}("%cmin%r"), injective{}()] + symbol LblfloatMul{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMul"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,23,46,54)"), left{}(), format{}("%cmul%r"), injective{}()] + symbol LblfloatNe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatNe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,23,73,52)"), left{}(), format{}("%cne%r"), injective{}()] + symbol LblfloatSub{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatSub"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,23,45,54)"), left{}(), format{}("%csub%r"), injective{}()] hooked-symbol LblfloorFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("floorFloat"), hook{}("FLOAT.floor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1291,20,1291,89)"), left{}(), format{}("%cfloorFloat%r %c(%r %1 %c)%r"), function{}()] symbol Lblframe'UndsUndsUndsUndsUnds'WASM'Unds'Frame'Unds'Int'Unds'ValTypes'Unds'ValStack'Unds'Map{}(SortInt{}, SortValTypes{}, SortValStack{}, SortMap{}) : SortFrame{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(733,22,733,54)"), left{}(), format{}("%cframe%r %1 %2 %3 %4"), injective{}()] symbol LblfreshInt'LParUndsRParUnds'INT'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), freshGenerator{}(), klabel{}("freshInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1137,18,1137,81)"), left{}(), format{}("%cfreshInt%r %c(%r %1 %c)%r"), private{}(), function{}()] - symbol LblfuncMeta{}(SortOptionalId{}, SortMap{}) : SortFuncMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("funcMeta"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(722,29,722,91)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblfuncMeta{}(SortOptionalId{}, SortMap{}) : SortFuncMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("funcMeta"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(722,29,722,91)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] symbol Lblfunc'Unds'WASM-DATA-COMMON-SYNTAX'Unds'AllocatedKind{}() : SortAllocatedKind{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,30,134,35)"), left{}(), format{}("%cfunc%r"), injective{}()] symbol Lblfuncref'Unds'WASM-TEXT-COMMON-SYNTAX'Unds'TableElemType{}() : SortTableElemType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,30,231,38)"), left{}(), format{}("%cfuncref%r"), injective{}()] symbol LblgatherTypes'LParUndsCommUndsRParUnds'WASM'Unds'VecType'Unds'TypeKeyWord'Unds'TypeDecls{}(SortTypeKeyWord{}, SortTypeDecls{}) : SortVecType{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("gatherTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(623,25,623,85)"), left{}(), format{}("%cgatherTypes%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -851,8 +851,8 @@ module KWASM-LEMMAS symbol Lblglobal'Stop'set'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,27,97,44)"), left{}(), format{}("%cglobal.set%r %1"), injective{}()] symbol Lblglobal'Unds'WASM-DATA-COMMON-SYNTAX'Unds'AllocatedKind{}() : SortAllocatedKind{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,60,134,67)"), left{}(), format{}("%cglobal%r"), injective{}()] symbol Lblgrow'UndsUnds'WASM'Unds'Instr'Unds'Int{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1075,22,1075,31)"), left{}(), format{}("%cgrow%r %1"), injective{}()] - symbol Lbli32{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("i32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,51)"), left{}(), format{}("%ci32%r"), injective{}()] - symbol Lbli64{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("i64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,55,86,81)"), left{}(), format{}("%ci64%r"), injective{}()] + symbol Lbli32{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("i32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,51)"), left{}(), format{}("%ci32%r"), injective{}()] + symbol Lbli64{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("i64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,55,86,81)"), left{}(), format{}("%ci64%r"), injective{}()] symbol Lblif'UndsUndsUnds'else'UndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,27,123,100)"), left{}(), format{}("%cif%r %1 %2 %3 %celse%r %4 %5 %cend%r %6"), injective{}()] symbol Lblif'UndsUndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,27,124,100)"), left{}(), format{}("%cif%r %1 %2 %3 %cend%r %4"), injective{}()] symbol LblinitCurFrameCell{}() : SortCurFrameCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitCurFrameCell%r"), function{}()] @@ -921,31 +921,31 @@ module KWASM-LEMMAS symbol LblinitWasmCell{}() : SortWasmCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitWasmCell%r"), function{}()] symbol Lblinit'Unds'local'UndsUndsUnds'WASM'Unds'Instr'Unds'Int'Unds'Val{}(SortInt{}, SortVal{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("100"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(502,23,502,43)"), left{}(), format{}("%cinit_local%r %1 %2"), injective{}()] symbol Lblinit'Unds'locals'UndsUnds'WASM'Unds'Instr'Unds'ValStack{}(SortValStack{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(503,23,503,48)"), left{}(), format{}("%cinit_locals%r %1"), injective{}()] - symbol LblintAdd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intAdd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,23,27,52)"), left{}(), format{}("%cadd%r"), injective{}()] - symbol LblintAnd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intAnd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,52)"), left{}(), format{}("%cand%r"), injective{}()] - symbol LblintDiv'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intDiv_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(32,23,32,56)"), left{}(), format{}("%cdiv_s%r"), injective{}()] - symbol LblintDiv'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intDiv_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,23,30,56)"), left{}(), format{}("%cdiv_u%r"), injective{}()] - symbol LblintEq{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intEq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,23,56,50)"), left{}(), format{}("%ceq%r"), injective{}()] - symbol LblintGe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGe_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,23,65,54)"), left{}(), format{}("%cge_s%r"), injective{}()] - symbol LblintGe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGe_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,23,63,54)"), left{}(), format{}("%cge_u%r"), injective{}()] - symbol LblintGt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGt_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,23,61,54)"), left{}(), format{}("%cgt_s%r"), injective{}()] - symbol LblintGt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGt_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,23,59,54)"), left{}(), format{}("%cgt_u%r"), injective{}()] - symbol LblintLe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLe_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,23,64,54)"), left{}(), format{}("%cle_s%r"), injective{}()] - symbol LblintLe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLe_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,23,62,54)"), left{}(), format{}("%cle_u%r"), injective{}()] - symbol LblintLt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLt_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,23,60,54)"), left{}(), format{}("%clt_s%r"), injective{}()] - symbol LblintLt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLt_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,23,58,54)"), left{}(), format{}("%clt_u%r"), injective{}()] - symbol LblintMul{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intMul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(29,23,29,52)"), left{}(), format{}("%cmul%r"), injective{}()] - symbol LblintNe{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intNe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,23,57,50)"), left{}(), format{}("%cne%r"), injective{}()] - symbol LblintOr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intOr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,50)"), left{}(), format{}("%cor%r"), injective{}()] - symbol LblintRem'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRem_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,56)"), left{}(), format{}("%crem_s%r"), injective{}()] - symbol LblintRem'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRem_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,23,31,56)"), left{}(), format{}("%crem_u%r"), injective{}()] - symbol LblintRotl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRotl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,54)"), left{}(), format{}("%crotl%r"), injective{}()] - symbol LblintRotr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRotr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,23,41,54)"), left{}(), format{}("%crotr%r"), injective{}()] - symbol LblintShl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,52)"), left{}(), format{}("%cshl%r"), injective{}()] - symbol LblintShr'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShr_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,56)"), left{}(), format{}("%cshr_s%r"), injective{}()] - symbol LblintShr'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShr_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,23,38,56)"), left{}(), format{}("%cshr_u%r"), injective{}()] - symbol LblintSub{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intSub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,23,28,52)"), left{}(), format{}("%csub%r"), injective{}()] - symbol LblintXor{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intXor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,23,36,52)"), left{}(), format{}("%cxor%r"), injective{}()] + symbol LblintAdd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intAdd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,23,27,52)"), left{}(), format{}("%cadd%r"), injective{}()] + symbol LblintAnd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intAnd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,52)"), left{}(), format{}("%cand%r"), injective{}()] + symbol LblintDiv'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intDiv_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(32,23,32,56)"), left{}(), format{}("%cdiv_s%r"), injective{}()] + symbol LblintDiv'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intDiv_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,23,30,56)"), left{}(), format{}("%cdiv_u%r"), injective{}()] + symbol LblintEq{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intEq"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,23,56,50)"), left{}(), format{}("%ceq%r"), injective{}()] + symbol LblintGe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGe_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,23,65,54)"), left{}(), format{}("%cge_s%r"), injective{}()] + symbol LblintGe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGe_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,23,63,54)"), left{}(), format{}("%cge_u%r"), injective{}()] + symbol LblintGt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGt_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,23,61,54)"), left{}(), format{}("%cgt_s%r"), injective{}()] + symbol LblintGt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGt_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,23,59,54)"), left{}(), format{}("%cgt_u%r"), injective{}()] + symbol LblintLe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLe_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,23,64,54)"), left{}(), format{}("%cle_s%r"), injective{}()] + symbol LblintLe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLe_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,23,62,54)"), left{}(), format{}("%cle_u%r"), injective{}()] + symbol LblintLt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLt_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,23,60,54)"), left{}(), format{}("%clt_s%r"), injective{}()] + symbol LblintLt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLt_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,23,58,54)"), left{}(), format{}("%clt_u%r"), injective{}()] + symbol LblintMul{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intMul"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(29,23,29,52)"), left{}(), format{}("%cmul%r"), injective{}()] + symbol LblintNe{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intNe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,23,57,50)"), left{}(), format{}("%cne%r"), injective{}()] + symbol LblintOr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intOr"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,50)"), left{}(), format{}("%cor%r"), injective{}()] + symbol LblintRem'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRem_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,56)"), left{}(), format{}("%crem_s%r"), injective{}()] + symbol LblintRem'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRem_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,23,31,56)"), left{}(), format{}("%crem_u%r"), injective{}()] + symbol LblintRotl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRotl"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,54)"), left{}(), format{}("%crotl%r"), injective{}()] + symbol LblintRotr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRotr"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,23,41,54)"), left{}(), format{}("%crotr%r"), injective{}()] + symbol LblintShl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShl"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,52)"), left{}(), format{}("%cshl%r"), injective{}()] + symbol LblintShr'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShr_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,56)"), left{}(), format{}("%cshr_s%r"), injective{}()] + symbol LblintShr'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShr_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,23,38,56)"), left{}(), format{}("%cshr_u%r"), injective{}()] + symbol LblintSub{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intSub"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,23,28,52)"), left{}(), format{}("%csub%r"), injective{}()] + symbol LblintXor{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intXor"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,23,36,52)"), left{}(), format{}("%cxor%r"), injective{}()] hooked-symbol LblintersectSet'LParUndsCommUndsRParUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("intersectSet"), hook{}("SET.intersection"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(569,18,569,88)"), left{}(), format{}("%cintersectSet%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol Lblis'Hash'Layout{}(SortK{}) : SortBool{} [functional{}(), predicate{}("#Layout"), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cis#Layout%r %c(%r %1 %c)%r"), function{}()] symbol LblisAlignArg{}(SortK{}) : SortBool{} [functional{}(), predicate{}("AlignArg"), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cisAlignArg%r %c(%r %1 %c)%r"), function{}()] @@ -1210,19 +1210,19 @@ module KWASM-LEMMAS hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), klabel{}("lengthBytes"), hook{}("BYTES.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1853,18,1853,99)"), left{}(), format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthString"), hook{}("STRING.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1414,18,1414,84)"), left{}(), format{}("%clengthString%r %c(%r %1 %c)%r"), function{}()] symbol LbllengthValTypes'LParUndsRParUnds'WASM-DATA'Unds'Int'Unds'ValTypes{}(SortValTypes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthValTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,20,251,69)"), left{}(), format{}("%clengthValTypes%r %c(%r %1 %c)%r"), function{}()] - symbol LbllimitsMin{}(SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("limitsMin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,23,235,70)"), left{}(), format{}("%c#limitsMin%r %c(%r %1 %c)%r"), injective{}()] - symbol LbllimitsMinMax{}(SortInt{}, SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("limitsMinMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,23,236,70)"), left{}(), format{}("%c#limits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LbllistInt{}(SortInt{}, SortInts{}) : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllistStmt{}(SortEmptyStmt{}, SortEmptyStmts{}) : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllistValTypes{}(SortValType{}, SortValTypes{}) : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listValTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("littleEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1726,25,1726,64)"), left{}(), format{}("%cLE%r"), injective{}()] - symbol LblloadOpLoad{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,24,108,62)"), left{}(), format{}("%cload%r"), injective{}()] - symbol LblloadOpLoad16'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad16_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,24,113,66)"), left{}(), format{}("%cload16_s%r"), injective{}()] - symbol LblloadOpLoad16'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad16_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,24,110,66)"), left{}(), format{}("%cload16_u%r"), injective{}()] - symbol LblloadOpLoad32'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,24,114,66)"), left{}(), format{}("%cload32_s%r"), injective{}()] - symbol LblloadOpLoad32'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,24,111,66)"), left{}(), format{}("%cload32_u%r"), injective{}()] - symbol LblloadOpLoad8'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad8_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,24,112,65)"), left{}(), format{}("%cload8_s%r"), injective{}()] - symbol LblloadOpLoad8'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad8_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,24,109,65)"), left{}(), format{}("%cload8_u%r"), injective{}()] + symbol LbllimitsMin{}(SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("limitsMin"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,23,235,70)"), left{}(), format{}("%c#limitsMin%r %c(%r %1 %c)%r"), injective{}()] + symbol LbllimitsMinMax{}(SortInt{}, SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("limitsMinMax"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,23,236,70)"), left{}(), format{}("%c#limits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LbllistInt{}(SortInt{}, SortInts{}) : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("listInt"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllistStmt{}(SortEmptyStmt{}, SortEmptyStmts{}) : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("listStmt"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllistValTypes{}(SortValType{}, SortValTypes{}) : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("listValTypes"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("littleEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1726,25,1726,64)"), left{}(), format{}("%cLE%r"), injective{}()] + symbol LblloadOpLoad{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,24,108,62)"), left{}(), format{}("%cload%r"), injective{}()] + symbol LblloadOpLoad16'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad16_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,24,113,66)"), left{}(), format{}("%cload16_s%r"), injective{}()] + symbol LblloadOpLoad16'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad16_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,24,110,66)"), left{}(), format{}("%cload16_u%r"), injective{}()] + symbol LblloadOpLoad32'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,24,114,66)"), left{}(), format{}("%cload32_s%r"), injective{}()] + symbol LblloadOpLoad32'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,24,111,66)"), left{}(), format{}("%cload32_u%r"), injective{}()] + symbol LblloadOpLoad8'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad8_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,24,112,65)"), left{}(), format{}("%cload8_s%r"), injective{}()] + symbol LblloadOpLoad8'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad8_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,24,109,65)"), left{}(), format{}("%cload8_u%r"), injective{}()] symbol Lblload'LBraUndsUndsUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'IValType'Unds'Int'Unds'Int'Unds'Signedness'Unds'Bytes{}(SortIValType{}, SortInt{}, SortInt{}, SortSignedness{}, SortBytes{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("11000001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,22,1003,68)"), left{}(), format{}("%cload%r %c{%r %1 %2 %3 %4 %5 %c}%r"), injective{}()] symbol Lblload'LBraUndsUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'IValType'Unds'Int'Unds'Int'Unds'Signedness{}(SortIValType{}, SortInt{}, SortInt{}, SortSignedness{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("1100001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1002,22,1002,62)"), left{}(), format{}("%cload%r %c{%r %1 %2 %3 %4 %c}%r"), injective{}()] symbol Lbllocal'Stop'get'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,27,98,43)"), left{}(), format{}("%clocal.get%r %1"), injective{}()] @@ -1242,9 +1242,9 @@ module KWASM-LEMMAS hooked-symbol LblminFloat'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fp.min"), right{}(), terminals{}("110101"), klabel{}("minFloat"), hook{}("FLOAT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,20,1304,93)"), left{}(), format{}("%cminFloat%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblminInt'LParUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 #2) #1 #2)"), right{}(), terminals{}("110101"), hook{}("INT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(963,18,963,118)"), left{}(), format{}("%cminInt%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblminValueFloat'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("minValueFloat"), hook{}("FLOAT.minValue"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,20,1307,105)"), left{}(), format{}("%cminValueFloat%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - symbol LblmoduleMeta{}(SortOptionalId{}, SortMap{}, SortOptionalString{}) : SortModuleMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("moduleMeta"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1382,31,1382,121)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblmutConst{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("mutConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,53)"), left{}(), format{}("%cconst%r"), injective{}()] - symbol LblmutVar{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("mutVar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,51)"), left{}(), format{}("%cvar%r"), injective{}()] + symbol LblmoduleMeta{}(SortOptionalId{}, SortMap{}, SortOptionalString{}) : SortModuleMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("moduleMeta"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1382,31,1382,121)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblmutConst{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("mutConst"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,53)"), left{}(), format{}("%cconst%r"), injective{}()] + symbol LblmutVar{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("mutVar"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,51)"), left{}(), format{}("%cvar%r"), injective{}()] hooked-symbol LblnewUUID'Unds'STRING-COMMON'Unds'String{}() : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), impure{}(), hook{}("STRING.uuid"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1566,21,1566,67)"), left{}(), format{}("%cnewUUID%r"), function{}()] symbol LblnoCurFrameCell{}() : SortCurFrameCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("CurFrameCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoCurFrameCell%r"), injective{}()] symbol LblnoCurModIdxCell{}() : SortCurModIdxCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("CurModIdxCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoCurModIdxCell%r"), injective{}()] @@ -1304,7 +1304,7 @@ module KWASM-LEMMAS symbol LblnoTypesCell{}() : SortTypesCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("TypesCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoTypesCell%r"), injective{}()] symbol LblnoValstackCell{}() : SortValstackCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("ValstackCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoValstackCell%r"), injective{}()] symbol LblnoWasmCell{}() : SortWasmCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("WasmCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoWasmCell%r"), injective{}()] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), klabel{}("notBool_"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,176)"), left{}(), format{}("%cnotBool%r %1"), function{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("notBool_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,176)"), left{}(), format{}("%cnotBool%r %1"), function{}()] symbol Lbloffset'EqlsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'OffsetArg'Unds'WasmInt{}(SortWasmInt{}) : SortOffsetArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,27,110,43)"), left{}(), format{}("%coffset=%r %1"), injective{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("ordChar"), hook{}("STRING.ord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1424,18,1424,69)"), left{}(), format{}("%cordChar%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblpadLeftBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("padLeftBytes"), hook{}("BYTES.padLeft"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1836,20,1836,95)"), left{}(), format{}("%cpadLeftBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] @@ -1640,17 +1640,17 @@ module KWASM-LEMMAS symbol LblsequenceStmts'LParUndsRParUnds'WASM'Unds'K'Unds'Stmts{}(SortStmts{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sequenceStmts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(274,18,274,53)"), left{}(), format{}("%csequenceStmts%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("signExtendBitRangeInt"), hook{}("INT.signExtendBitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(998,18,998,112)"), left{}(), format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblsignFloat'LParUndsRParUnds'FLOAT'Unds'Bool'Unds'Float{}(SortFloat{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("signFloat"), hook{}("FLOAT.sign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1217,19,1217,80)"), left{}(), format{}("%csignFloat%r %c(%r %1 %c)%r"), function{}()] - symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("signedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1736,25,1736,62)"), left{}(), format{}("%cSigned%r"), injective{}()] + symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("signedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1736,25,1736,62)"), left{}(), format{}("%cSigned%r"), injective{}()] hooked-symbol LblsinFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sinFloat"), hook{}("FLOAT.sin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1296,20,1296,87)"), left{}(), format{}("%csinFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), klabel{}("sizeList"), hook{}("LIST.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(742,18,742,121)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sizeMap"), hook{}("MAP.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(384,18,384,103)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'SET'Unds'Int'Unds'Set{}(SortSet{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("size"), hook{}("SET.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(604,18,604,80)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] symbol LblsqrtFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sqrtFloat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1305,20,1305,58)"), left{}(), format{}("%csqrtFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("srandInt"), hook{}("INT.srand"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1032,16,1032,64)"), left{}(), format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}()] - symbol LblstoreOpStore{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,66)"), left{}(), format{}("%cstore%r"), injective{}()] - symbol LblstoreOpStore16{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore16"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,24,106,66)"), left{}(), format{}("%cstore16%r"), injective{}()] - symbol LblstoreOpStore32{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,24,107,66)"), left{}(), format{}("%cstore32%r"), injective{}()] - symbol LblstoreOpStore8{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore8"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,24,105,66)"), left{}(), format{}("%cstore8%r"), injective{}()] + symbol LblstoreOpStore{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,66)"), left{}(), format{}("%cstore%r"), injective{}()] + symbol LblstoreOpStore16{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore16"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,24,106,66)"), left{}(), format{}("%cstore16%r"), injective{}()] + symbol LblstoreOpStore32{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,24,107,66)"), left{}(), format{}("%cstore32%r"), injective{}()] + symbol LblstoreOpStore8{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore8"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,24,105,66)"), left{}(), format{}("%cstore8%r"), injective{}()] symbol Lblstore'LBraUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'Int'Unds'Int'Unds'Number{}(SortInt{}, SortInt{}, SortNumber{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("110001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,22,955,51)"), left{}(), format{}("%cstore%r %c{%r %1 %2 %3 %c}%r"), injective{}()] symbol LblstructureModule'LParUndsCommUndsRParUnds'WASM-TEXT'Unds'ModuleDecl'Unds'Defns'Unds'OptionalId{}(SortDefns{}, SortOptionalId{}) : SortModuleDecl{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("structureModule"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(656,28,656,76)"), left{}(), format{}("%cstructureModule%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblstructureModules'LParUndsRParUnds'WASM-TEXT'Unds'Stmts'Unds'Stmts{}(SortStmts{}) : SortStmts{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("structureModules"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(650,22,650,58)"), left{}(), format{}("%cstructureModules%r %c(%r %1 %c)%r"), function{}()] @@ -1670,11 +1670,11 @@ module KWASM-LEMMAS symbol LblunfoldDefns'LParUndsRParUnds'WASM-TEXT'Unds'Defns'Unds'Defns{}(SortDefns{}) : SortDefns{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldDefns"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(392,22,392,71)"), left{}(), format{}("%cunfoldDefns%r %c(%r %1 %c)%r"), function{}()] symbol LblunfoldInstrs'LParUndsRParUnds'WASM-TEXT'Unds'Instrs'Unds'Instrs{}(SortInstrs{}) : SortInstrs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldInstrs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,24,558,67)"), left{}(), format{}("%cunfoldInstrs%r %c(%r %1 %c)%r"), function{}()] symbol LblunfoldStmts'LParUndsRParUnds'WASM-TEXT'Unds'Stmts'Unds'Stmts{}(SortStmts{}) : SortStmts{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldStmts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(391,22,391,71)"), left{}(), format{}("%cunfoldStmts%r %c(%r %1 %c)%r"), function{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("unsignedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1737,25,1737,66)"), left{}(), format{}("%cUnsigned%r"), injective{}()] + symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("unsignedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1737,25,1737,66)"), left{}(), format{}("%cUnsigned%r"), injective{}()] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("updateList"), hook{}("LIST.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,19,706,96)"), left{}(), format{}("%cupdateList%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("updateMap"), hook{}("MAP.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(335,18,335,91)"), left{}(), format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("values"), hook{}("MAP.values"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(376,19,376,76)"), left{}(), format{}("%cvalues%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), klabel{}("~Int_"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,18,931,172)"), left{}(), format{}("%c~Int%r %1"), function{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("~Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,18,931,172)"), left{}(), format{}("%c~Int%r %1"), function{}()] // generated axioms axiom{R} \exists{R} (Val:SortNumber{}, \equals{SortNumber{}, R} (Val:SortNumber{}, inj{SortInt{}, SortNumber{}} (From:SortInt{}))) [subsort{SortInt{}, SortNumber{}}()] // subsort diff --git a/test/regression-wasm/test-memory-vdefinition.kore b/test/regression-wasm/test-memory-vdefinition.kore index 53948e7426..e3c4a2aef8 100644 --- a/test/regression-wasm/test-memory-vdefinition.kore +++ b/test/regression-wasm/test-memory-vdefinition.kore @@ -445,9 +445,9 @@ module KWASM-LEMMAS hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), hook{}("BYTES.empty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1716,20,1716,69)"), left{}(), format{}("%c.Bytes%r"), function{}()] hooked-symbol Lbl'Stop'FuncDefCellMap{}() : SortFuncDefCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.FuncDefCellMap%r"), function{}()] hooked-symbol Lbl'Stop'GlobalInstCellMap{}() : SortGlobalInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.GlobalInstCellMap%r"), function{}()] - symbol Lbl'Stop'Identifier{}() : SortOptionalId{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Identifier"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,27,35,58)"), left{}(), format{}("%c%r"), injective{}()] + symbol Lbl'Stop'Identifier{}() : SortOptionalId{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".Identifier"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,27,35,58)"), left{}(), format{}("%c%r"), injective{}()] symbol Lbl'Stop'Int'Unds'WASM-DATA'Unds'OptionalInt{}() : SortOptionalInt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(226,34,226,39)"), left{}(), format{}("%c.Int%r"), injective{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(659,19,659,146)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(659,19,659,146)"), left{}(), format{}("%c.List%r"), function{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Defns'Unds'Defn'Unds'Defns'QuotRBraUnds'Defns{}() : SortDefns{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,27,59,65)"), left{}(), format{}("%c.Defns%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Instrs'Unds'Instr'Unds'Instrs'QuotRBraUnds'Instrs{}() : SortInstrs{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,27,58,65)"), left{}(), format{}("%c.Instrs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts'QuotRBraUnds'Stmts{}() : SortStmts{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,27,60,65)"), left{}(), format{}("%c.Stmts%r"), injective{}()] @@ -455,15 +455,15 @@ module KWASM-LEMMAS symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-DATA-COMMON-SYNTAX'Unds'DataString'Unds'WasmString'Unds'DataString'QuotRBraUnds'DataString{}() : SortDataString{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listWasmString\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,27,54,71)"), left{}(), format{}("%c.DataString%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-DATA-COMMON-SYNTAX'Unds'ElemSegment'Unds'Index'Unds'ElemSegment'QuotRBraUnds'ElemSegment{}() : SortElemSegment{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listIndex\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,28,75,62)"), left{}(), format{}("%c.ElemSegment%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'LocalDecls'Unds'LocalDecl'Unds'LocalDecls'QuotRBraUnds'LocalDecls{}() : SortLocalDecls{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listLocalDecl\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(216,27,216,77)"), left{}(), format{}("%c.LocalDecls%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listInt'QuotRBraUnds'Ints{}() : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listInt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%c.Ints%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listStmt'QuotRBraUnds'EmptyStmts{}() : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%c.EmptyStmts%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listValTypes'QuotRBraUnds'ValTypes{}() : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listValTypes\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%c.ValTypes%r"), injective{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,18,259,128)"), left{}(), format{}("%c.Map%r"), function{}()] + symbol Lbl'Stop'List'LBraQuot'listInt'QuotRBraUnds'Ints{}() : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".List{\"listInt\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%c.Ints%r"), injective{}()] + symbol Lbl'Stop'List'LBraQuot'listStmt'QuotRBraUnds'EmptyStmts{}() : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(".List{\"listStmt\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%c.EmptyStmts%r"), injective{}()] + symbol Lbl'Stop'List'LBraQuot'listValTypes'QuotRBraUnds'ValTypes{}() : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".List{\"listValTypes\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%c.ValTypes%r"), injective{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,18,259,128)"), left{}(), format{}("%c.Map%r"), function{}()] hooked-symbol Lbl'Stop'MemInstCellMap{}() : SortMemInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.MemInstCellMap%r"), function{}()] hooked-symbol Lbl'Stop'ModuleInstCellMap{}() : SortModuleInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.ModuleInstCellMap%r"), function{}()] symbol Lbl'Stop'Mut'Unds'WASM-DATA'Unds'Mut{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(314,20,314,25)"), left{}(), format{}("%c.Mut%r"), injective{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,122)"), left{}(), format{}("%c.Set%r"), function{}()] - symbol Lbl'Stop'String{}() : SortOptionalString{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".String"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,31,1383,65)"), left{}(), format{}("%c.String%r"), injective{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,122)"), left{}(), format{}("%c.Set%r"), function{}()] + symbol Lbl'Stop'String{}() : SortOptionalString{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(".String"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,31,1383,65)"), left{}(), format{}("%c.String%r"), injective{}()] hooked-symbol Lbl'Stop'TabInstCellMap{}() : SortTabInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.TabInstCellMap%r"), function{}()] symbol Lbl'Stop'Type'Unds'WASM-DATA'Unds'Type{}() : SortType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(260,21,260,27)"), left{}(), format{}("%c.Type%r"), injective{}()] symbol Lbl'Stop'ValStack'Unds'WASM-DATA'Unds'ValStack{}() : SortValStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(408,25,408,35)"), left{}(), format{}("%c.ValStack%r"), injective{}()] @@ -566,18 +566,18 @@ module KWASM-LEMMAS hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Bytes"), hook{}("BYTES.int2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1766,20,1766,104)"), left{}(), format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2Float'LParUndsCommUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortFloat{} [latex{}("{\\\\it{}Int2Float}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Float"), hook{}("FLOAT.int2float"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1342,20,1342,131)"), left{}(), format{}("%cInt2Float%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Int2String"), hook{}("STRING.int2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1516,21,1516,103)"), left{}(), format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,20,678,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,19,725,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,19,667,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(282,20,282,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,18,301,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,20,678,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,19,725,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,19,667,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(282,20,282,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,18,301,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol LblMemInstCellMap'Coln'in'Unds'keys{}(SortMAddrCell{}, SortMemInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblMemInstCellMapItem{}(SortMAddrCell{}, SortMemInstCell{}) : SortMemInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] hooked-symbol LblModuleInstCellMap'Coln'in'Unds'keys{}(SortModIdxCell{}, SortModuleInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblModuleInstCellMapItem{}(SortModIdxCell{}, SortModuleInstCell{}) : SortModuleInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Base'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'Int{}(SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("String2Base"), hook{}("STRING.string2base"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1518,21,1518,98)"), left{}(), format{}("%cString2Base%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblString2Bool'LParUndsRParUnds'STRING-COMMON'Unds'Bool'Unds'String{}(SortString{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1473,19,1473,48)"), left{}(), format{}("%cString2Bool%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Bytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'String{}(SortString{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bytes"), hook{}("BYTES.string2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1778,20,1778,88)"), left{}(), format{}("%cString2Bytes%r %c(%r %1 %c)%r"), function{}()] @@ -586,24 +586,24 @@ module KWASM-LEMMAS hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Int"), hook{}("STRING.string2int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1515,21,1515,91)"), left{}(), format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblTabInstCellMap'Coln'in'Unds'keys{}(SortTAddrCell{}, SortTabInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblTabInstCellMapItem{}(SortTAddrCell{}, SortTabInstCell{}) : SortTabInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] - symbol LblWasmInt{}(SortWasmIntToken{}) : SortWasmInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0"), klabel{}("WasmInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,24,81,78)"), left{}(), format{}("%1"), avoid{}(), function{}()] + symbol LblWasmInt{}(SortWasmIntToken{}) : SortWasmInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), symbol'Kywd'{}("WasmInt"), priorities{}(), right{}(), terminals{}("0"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,24,81,78)"), left{}(), format{}("%1"), avoid{}(), function{}()] symbol LblWasmIntToken2Int'LParUndsRParUnds'WASM-TEXT'Unds'Int'Unds'WasmIntToken{}(SortWasmIntToken{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntToken2Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(350,23,350,72)"), left{}(), format{}("%cWasmIntToken2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblWasmIntToken2String'LParUndsRParUnds'WASM-TEXT'Unds'String'Unds'WasmIntToken{}(SortWasmIntToken{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntToken2String"), hook{}("STRING.token2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(348,23,348,111)"), left{}(), format{}("%cWasmIntToken2String%r %c(%r %1 %c)%r"), function{}()] symbol LblWasmIntTokenString2Int'LParUndsRParUnds'WASM-TEXT'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntTokenString2Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,23,349,72)"), left{}(), format{}("%cWasmIntTokenString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.rem roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.rem"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,20,1248,182)"), left{}(Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c%%Float%r %2"), function{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_%Int_"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,18,940,170)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), klabel{}("_&Int_"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,18,951,182)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_%Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,18,940,170)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_&Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,18,951,182)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] symbol Lbl'UndsLPar'elem'UndsRParUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TableSpec'Unds'TableElemType'Unds'ElemSegment{}(SortTableElemType{}, SortElemSegment{}) : SortTableSpec{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("01101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(225,26,225,65)"), left{}(), format{}("%1 %c(%r %celem%r %2 %c)%r"), injective{}()] hooked-symbol Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.mul roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,20,1246,184)"), left{}(Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c*Float%r %2"), function{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), klabel{}("_*Int_"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,18,936,181)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_*Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,18,936,181)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] symbol Lbl'UndsPlusPlusUndsUnds'WASM-DATA'Unds'ValStack'Unds'ValStack'Unds'ValStack{}(SortValStack{}, SortValStack{}) : SortValStack{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(410,25,410,69)"), left{}(), format{}("%1 %c++%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), hook{}("BYTES.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1863,20,1863,89)"), left{}(), format{}("%1 %c+Bytes%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(fp.add roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,20,1250,181)"), left{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c+Float%r %2"), function{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), klabel{}("_+Int_"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,18,945,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_+Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,18,945,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1406,21,1406,139)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), format{}("%1 %c+String%r %2"), function{}()] symbol Lbl'UndsPlusUndsUnds'WASM-DATA'Unds'ValTypes'Unds'ValTypes'Unds'ValTypes{}(SortValTypes{}, SortValTypes{}) : SortValTypes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(267,25,267,68)"), left{}(), format{}("%1 %c+%r %2"), function{}()] hooked-symbol Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(fp.sub roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1251,20,1251,181)"), left{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c-Float%r %2"), function{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), klabel{}("_-Int_"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_-Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,18,322,120)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] symbol Lbl'UndsStopUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'FValType'Unds'LoadOpM{}(SortFValType{}, SortLoadOpM{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,27,106,46)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] symbol Lbl'UndsStopUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'FValType'Unds'StoreOpM{}(SortFValType{}, SortStoreOpM{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,27,104,48)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] @@ -620,50 +620,50 @@ module KWASM-LEMMAS symbol Lbl'UndsStopUndsUndsUndsUnds'WASM-NUMERIC'Unds'Val'Unds'IValType'Unds'IRelOp'Unds'Int'Unds'Int{}(SortIValType{}, SortIRelOp{}, SortInt{}, SortInt{}) : SortVal{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), priorities{}(), right{}(), terminals{}("01000"), klabel{}("intRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,20,324,81)"), left{}(), format{}("%1 %c.%r %2 %3 %4"), function{}()] symbol Lbl'UndsStopUndsUndsUndsUnds'WASM'Unds'Instr'Unds'IValType'Unds'StoreOp'Unds'Int'Unds'Int{}(SortIValType{}, SortStoreOp{}, SortInt{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("01000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,22,953,49)"), left{}(), format{}("%1 %c.%r %2 %3 %4"), injective{}()] hooked-symbol Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.div roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.div"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,20,1247,184)"), left{}(Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c/Float%r %2"), function{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_/Int_"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(939,18,939,172)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_/Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(939,18,939,172)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] symbol Lbl'UndsColnUndsUnds'WASM-DATA'Unds'ValStack'Unds'Val'Unds'ValStack{}(SortVal{}, SortValStack{}) : SortValStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(409,25,409,46)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ll_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shlInt"), terminals{}("010"), klabel{}("_<=Float%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), klabel{}("_>=Int_"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1009,19,1009,176)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>=Int_"), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1009,19,1009,176)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1553,19,1553,82)"), left{}(), format{}("%1 %c>=String%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), klabel{}("_>>Int_"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,18,948,172)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>>Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,18,948,172)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'Float'UndsUnds'FLOAT'Unds'Bool'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fg.gt"), right{}(), terminals{}("010"), hook{}("FLOAT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1325,19,1325,147)"), left{}(Lbl'Unds-GT-'Float'UndsUnds'FLOAT'Unds'Bool'Unds'Float'Unds'Float{}()), format{}("%1 %c>Float%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), klabel{}("_>Int_"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,19,1010,171)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>Int_"), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,19,1010,171)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1552,19,1552,82)"), left{}(), format{}("%1 %c>String%r %2"), function{}()] hooked-symbol Lbl'Unds'FuncDefCellMap'Unds'{}(SortFuncDefCellMap{}, SortFuncDefCellMap{}) : SortFuncDefCellMap{} [unit{}(Lbl'Stop'FuncDefCellMap{}()), element{}(LblFuncDefCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'Unds'GlobalInstCellMap'Unds'{}(SortGlobalInstCellMap{}, SortGlobalInstCellMap{}) : SortGlobalInstCellMap{} [unit{}(Lbl'Stop'GlobalInstCellMap{}()), element{}(LblGlobalInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(651,19,651,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,18,251,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(651,19,651,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,18,251,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'MemInstCellMap'Unds'{}(SortMemInstCellMap{}, SortMemInstCellMap{}) : SortMemInstCellMap{} [unit{}(Lbl'Stop'MemInstCellMap{}()), element{}(LblMemInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'Unds'ModuleInstCellMap'Unds'{}(SortModuleInstCellMap{}, SortModuleInstCellMap{}) : SortModuleInstCellMap{} [unit{}(Lbl'Stop'ModuleInstCellMap{}()), element{}(LblModuleInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'TabInstCellMap'Unds'{}(SortTabInstCellMap{}, SortTabInstCellMap{}) : SortTabInstCellMap{} [unit{}(Lbl'Stop'TabInstCellMap{}()), element{}(LblTabInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), hook{}("BYTES.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,20,1789,90)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,19,687,107)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,18,310,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,18,310,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101"), hook{}("BYTES.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1798,18,1798,62)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,20,292,138)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), klabel{}("_^%Int__"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(934,18,934,138)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^%Int__"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(934,18,934,138)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] hooked-symbol Lbl'UndsXor-'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}^{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), right{}(), terminals{}("010"), hook{}("FLOAT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,20,1244,98)"), left{}(Lbl'UndsXor-'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c^Float%r %2"), function{}()] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), klabel{}("_^Int_"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,18,933,177)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,18,933,177)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Defns'Unds'Defn'Unds'Defns{}(SortDefn{}, SortDefns{}) : SortDefns{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,27,59,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Instrs'Unds'Instr'Unds'Instrs{}(SortInstr{}, SortInstrs{}) : SortInstrs{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,27,58,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts{}(SortStmt{}, SortStmts{}) : SortStmts{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,27,60,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] @@ -688,98 +688,98 @@ module KWASM-LEMMAS symbol Lbl'UndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TableType'Unds'TextLimits'Unds'TableElemType{}(SortTextLimits{}, SortTableElemType{}) : SortTableType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(230,26,230,49)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TextLimits'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortTextLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(157,33,157,39)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'FuncSpec'Unds'TypeUse'Unds'LocalDecls'Unds'Instrs{}(SortTypeUse{}, SortLocalDecls{}, SortInstrs{}) : SortFuncSpec{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(204,25,204,49)"), left{}(), format{}("%1 %2 %3"), injective{}()] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andBool_"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(823,19,823,189)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andThenBool_"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(824,19,824,151)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(823,19,823,189)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andThenBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(824,19,824,151)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] symbol Lbl'Unds'appendDefn'UndsUnds'WASM-TEXT'Unds'Defns'Unds'Defns'Unds'Defn{}(SortDefns{}, SortDefn{}) : SortDefns{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(403,22,403,55)"), left{}(), format{}("%1 %cappendDefn%r %2"), function{}()] symbol Lbl'Unds'appendInstrs'UndsUnds'WASM-TEXT'Unds'Instrs'Unds'Instrs'Unds'Instrs{}(SortInstrs{}, SortInstrs{}) : SortInstrs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(565,23,565,66)"), left{}(), format{}("%1 %cappendInstrs%r %2"), function{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_divInt_"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(942,18,942,121)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_divInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(942,18,942,121)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1021,19,1021,52)"), left{}(), format{}("%1 %cdividesInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_impliesBool_"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,19,828,150)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_impliesBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,19,828,150)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(734,19,734,101)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(368,19,368,93)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_modInt_"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(943,18,943,121)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orBool_"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(826,19,826,184)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orElseBool_"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(827,19,827,148)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_modInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(943,18,943,121)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(826,19,826,184)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orElseBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(827,19,827,148)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] symbol Lbl'Unds'up'Slsh'Int'UndsUnds'WASM'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1195,20,1195,46)"), left{}(), format{}("%1 %cup/Int%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_xorBool_"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(825,19,825,143)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), klabel{}("_xorInt_"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,188)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(268,18,268,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), klabel{}("_|Int_"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,179)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(825,19,825,143)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorInt_"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,188)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(268,18,268,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|Int_"), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,179)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,18,558,88)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] - symbol LblaAbs{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aAbs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,57)"), left{}(), format{}("%cabs%r"), injective{}()] - symbol LblaBlock{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aBlock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,22,440,84)"), left{}(), format{}("%c#block%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaBr{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(452,22,452,53)"), left{}(), format{}("%c#br%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaBr'Unds'if{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr_if"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,22,460,66)"), left{}(), format{}("%c#br_if%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaBr'Unds'table{}(SortInts{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr_table"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,22,469,73)"), left{}(), format{}("%c#br_table%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCall{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,22,777,55)"), left{}(), format{}("%c#call%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCall'Unds'indirect{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aCall_indirect"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(789,22,789,82)"), left{}(), format{}("%c#call_indirect%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCeil{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aCeil"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,22,22,57)"), left{}(), format{}("%cceil%r"), injective{}()] - symbol LblaClz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aClz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,22,13,52)"), left{}(), format{}("%cclz%r"), injective{}()] - symbol LblaConvert'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,72)"), left{}(), format{}("%cconvert_i32_s%r"), injective{}()] - symbol LblaConvert'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,72)"), left{}(), format{}("%cconvert_i32_u%r"), injective{}()] - symbol LblaConvert'Unds'i64'Unds's{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i64_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,72)"), left{}(), format{}("%cconvert_i64_s%r"), injective{}()] - symbol LblaConvert'Unds'i64'Unds'u{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i64_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,72)"), left{}(), format{}("%cconvert_i64_u%r"), injective{}()] - symbol LblaCtz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aCtz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,52)"), left{}(), format{}("%cctz%r"), injective{}()] - symbol LblaCvtOp{}(SortValType{}, SortCvtOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aCvtOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,27,83,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaDataDefn{}(SortInt{}, SortInstrs{}, SortBytes{}) : SortDataDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aDataDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1174,25,1174,101)"), left{}(), format{}("%c#data%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaDemote'Unds'f64{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aDemote_f64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,66)"), left{}(), format{}("%cdemote_f64%r"), injective{}()] - symbol LblaDrop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aDrop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,27,84,81)"), left{}(), format{}("%cdrop%r"), injective{}()] - symbol LblaElemDefn{}(SortInt{}, SortInstrs{}, SortInts{}) : SortElemDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aElemDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,25,1143,107)"), left{}(), format{}("%c#elem%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaEqz{}() : SortTestOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aEqz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,23,53,50)"), left{}(), format{}("%ceqz%r"), injective{}()] - symbol LblaExportDefn{}(SortWasmString{}, SortInt{}) : SortExportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aExportDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1223,27,1223,95)"), left{}(), format{}("%c#export%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaExtend'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aExtend_i32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,70)"), left{}(), format{}("%cextend_i32_s%r"), injective{}()] - symbol LblaExtend'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aExtend_i32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,70)"), left{}(), format{}("%cextend_i32_u%r"), injective{}()] - symbol LblaFBinOp{}(SortFValType{}, SortFBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFBinOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,27,79,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFConst{}(SortFValType{}, SortNumber{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0110"), klabel{}("aFConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,27,75,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] - symbol LblaFRelOp{}(SortFValType{}, SortFRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,27,82,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFUnOp{}(SortFValType{}, SortFUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFUnOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,27,77,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFloor{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aFloor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,57)"), left{}(), format{}("%cfloor%r"), injective{}()] - symbol LblaFuncDefn{}(SortInt{}, SortVecType{}, SortInstrs{}, SortFuncMetadata{}) : SortFuncDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("aFuncDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(689,25,689,123)"), left{}(), format{}("%c#func%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol LblaFuncDesc{}(SortOptionalId{}, SortInt{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aFuncDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,27,1244,112)"), left{}(), format{}("%c#funcDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaFuncType{}(SortVecType{}, SortVecType{}) : SortFuncType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFuncType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,25,248,72)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] - symbol LblaGlobal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aGlobal.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(582,22,582,76)"), left{}(), format{}("%c#global.get%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaGlobal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aGlobal.set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(583,22,583,76)"), left{}(), format{}("%c#global.set%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaGlobalDefn{}(SortGlobalType{}, SortInstrs{}, SortOptionalId{}) : SortGlobalDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aGlobalDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(551,27,551,117)"), left{}(), format{}("%c#global%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaGlobalDesc{}(SortOptionalId{}, SortGlobalType{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aGlobalDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,27,1245,112)"), left{}(), format{}("%c#globalDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaGlobalType{}(SortMut{}, SortValType{}) : SortGlobalType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("00"), klabel{}("aGlobalType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(548,27,548,67)"), left{}(), format{}("%1 %2"), injective{}()] - symbol LblaGrow{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aGrow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,27,90,81)"), left{}(), format{}("%cmemory.grow%r"), injective{}()] - symbol LblaIBinOp{}(SortIValType{}, SortIBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIBinOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,27,78,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIConst{}(SortIValType{}, SortWasmInt{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0110"), klabel{}("aIConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,27,74,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] - symbol LblaIRelOp{}(SortIValType{}, SortIRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,27,81,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIUnOp{}(SortIValType{}, SortIUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIUnOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,27,76,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIf{}(SortVecType{}, SortInstrs{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("aIf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(478,22,478,112)"), left{}(), format{}("%c#if%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol LblaImportDefn{}(SortWasmString{}, SortWasmString{}, SortImportDesc{}) : SortImportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aImportDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,27,1243,112)"), left{}(), format{}("%c#import%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaLoad{}(SortValType{}, SortLoadOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,22,1001,81)"), left{}(), format{}("%c#load%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaLocal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,22,522,74)"), left{}(), format{}("%c#local.get%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLocal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,22,523,74)"), left{}(), format{}("%c#local.set%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLocal'Stop'tee{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.tee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,22,524,74)"), left{}(), format{}("%c#local.tee%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLoop{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aLoop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,22,488,82)"), left{}(), format{}("%c#loop%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaMemoryDefn{}(SortLimits{}, SortOptionalId{}) : SortMemoryDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aMemoryDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,27,916,101)"), left{}(), format{}("%c#memory%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaMemoryDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aMemoryDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,27,1247,112)"), left{}(), format{}("%c#memoryDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaModuleDecl{}(SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortModuleMetadata{}) : SortModuleDecl{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101010101010101"), klabel{}("aModuleDecl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1375,27,1375,239)"), left{}(), format{}("%c#module%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c)%r"), injective{}()] - symbol LblaNearest{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNearest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,57)"), left{}(), format{}("%cnearest%r"), injective{}()] - symbol LblaNeg{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNeg"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,22,19,57)"), left{}(), format{}("%cneg%r"), injective{}()] - symbol LblaNop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,27,86,80)"), left{}(), format{}("%cnop%r"), injective{}()] - symbol LblaPopcnt{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aPopcnt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,22,15,55)"), left{}(), format{}("%cpopcnt%r"), injective{}()] - symbol LblaPromote'Unds'f32{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aPromote_f32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,68)"), left{}(), format{}("%cpromote_f32%r"), injective{}()] - symbol LblaReturn{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aReturn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,27,88,83)"), left{}(), format{}("%creturn%r"), injective{}()] - symbol LblaSelect{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSelect"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,27,85,83)"), left{}(), format{}("%cselect%r"), injective{}()] - symbol LblaSize{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSize"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,27,89,81)"), left{}(), format{}("%cmemory.size%r"), injective{}()] - symbol LblaSqrt{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSqrt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,22,20,57)"), left{}(), format{}("%csqrt%r"), injective{}()] - symbol LblaStartDefn{}(SortInt{}) : SortStartDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aStartDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,26,1206,65)"), left{}(), format{}("%c#start%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaStore{}(SortValType{}, SortStoreOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,22,952,84)"), left{}(), format{}("%c#store%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaTableDefn{}(SortLimits{}, SortOptionalId{}) : SortTableDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTableDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,26,873,99)"), left{}(), format{}("%c#table%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaTableDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTableDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,27,1246,112)"), left{}(), format{}("%c#tableDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaTestOp{}(SortIValType{}, SortTestOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aTestOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,27,80,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaTrunc{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,22,23,57)"), left{}(), format{}("%ctrunc%r"), injective{}()] - symbol LblaTrunc'Unds'f32'Unds's{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,68)"), left{}(), format{}("%ctrunc_f32_s%r"), injective{}()] - symbol LblaTrunc'Unds'f32'Unds'u{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,68)"), left{}(), format{}("%ctrunc_f32_u%r"), injective{}()] - symbol LblaTrunc'Unds'f64'Unds's{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f64_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,68)"), left{}(), format{}("%ctrunc_f64_s%r"), injective{}()] - symbol LblaTrunc'Unds'f64'Unds'u{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f64_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,68)"), left{}(), format{}("%ctrunc_f64_u%r"), injective{}()] - symbol LblaTypeDefn{}(SortFuncType{}, SortOptionalId{}) : SortTypeDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTypeDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,25,660,95)"), left{}(), format{}("%c#type%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaUnreachable{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aUnreachable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,27,87,88)"), left{}(), format{}("%cunreachable%r"), injective{}()] - symbol LblaVecType{}(SortValTypes{}) : SortVecType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("101"), klabel{}("aVecType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(245,25,245,67)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] - symbol LblaWrap'Unds'i64{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aWrap_i64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,62)"), left{}(), format{}("%cwrap_i64%r"), injective{}()] + symbol LblaAbs{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aAbs"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,57)"), left{}(), format{}("%cabs%r"), injective{}()] + symbol LblaBlock{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBlock"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,22,440,84)"), left{}(), format{}("%c#block%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaBr{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(452,22,452,53)"), left{}(), format{}("%c#br%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaBr'Unds'if{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr_if"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,22,460,66)"), left{}(), format{}("%c#br_if%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaBr'Unds'table{}(SortInts{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr_table"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,22,469,73)"), left{}(), format{}("%c#br_table%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCall{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCall"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,22,777,55)"), left{}(), format{}("%c#call%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCall'Unds'indirect{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCall_indirect"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(789,22,789,82)"), left{}(), format{}("%c#call_indirect%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCeil{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aCeil"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,22,22,57)"), left{}(), format{}("%cceil%r"), injective{}()] + symbol LblaClz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aClz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,22,13,52)"), left{}(), format{}("%cclz%r"), injective{}()] + symbol LblaConvert'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,72)"), left{}(), format{}("%cconvert_i32_s%r"), injective{}()] + symbol LblaConvert'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,72)"), left{}(), format{}("%cconvert_i32_u%r"), injective{}()] + symbol LblaConvert'Unds'i64'Unds's{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i64_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,72)"), left{}(), format{}("%cconvert_i64_s%r"), injective{}()] + symbol LblaConvert'Unds'i64'Unds'u{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i64_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,72)"), left{}(), format{}("%cconvert_i64_u%r"), injective{}()] + symbol LblaCtz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aCtz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,52)"), left{}(), format{}("%cctz%r"), injective{}()] + symbol LblaCvtOp{}(SortValType{}, SortCvtOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCvtOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,27,83,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaDataDefn{}(SortInt{}, SortInstrs{}, SortBytes{}) : SortDataDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aDataDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1174,25,1174,101)"), left{}(), format{}("%c#data%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaDemote'Unds'f64{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aDemote_f64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,66)"), left{}(), format{}("%cdemote_f64%r"), injective{}()] + symbol LblaDrop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aDrop"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,27,84,81)"), left{}(), format{}("%cdrop%r"), injective{}()] + symbol LblaElemDefn{}(SortInt{}, SortInstrs{}, SortInts{}) : SortElemDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aElemDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,25,1143,107)"), left{}(), format{}("%c#elem%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaEqz{}() : SortTestOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aEqz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,23,53,50)"), left{}(), format{}("%ceqz%r"), injective{}()] + symbol LblaExportDefn{}(SortWasmString{}, SortInt{}) : SortExportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aExportDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1223,27,1223,95)"), left{}(), format{}("%c#export%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaExtend'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aExtend_i32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,70)"), left{}(), format{}("%cextend_i32_s%r"), injective{}()] + symbol LblaExtend'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aExtend_i32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,70)"), left{}(), format{}("%cextend_i32_u%r"), injective{}()] + symbol LblaFBinOp{}(SortFValType{}, SortFBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFBinOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,27,79,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFConst{}(SortFValType{}, SortNumber{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFConst"), priorities{}(), right{}(), terminals{}("0110"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,27,75,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] + symbol LblaFRelOp{}(SortFValType{}, SortFRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFRelOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,27,82,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFUnOp{}(SortFValType{}, SortFUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFUnOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,27,77,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFloor{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aFloor"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,57)"), left{}(), format{}("%cfloor%r"), injective{}()] + symbol LblaFuncDefn{}(SortInt{}, SortVecType{}, SortInstrs{}, SortFuncMetadata{}) : SortFuncDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFuncDefn"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(689,25,689,123)"), left{}(), format{}("%c#func%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol LblaFuncDesc{}(SortOptionalId{}, SortInt{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFuncDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,27,1244,112)"), left{}(), format{}("%c#funcDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaFuncType{}(SortVecType{}, SortVecType{}) : SortFuncType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("aFuncType"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,25,248,72)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] + symbol LblaGlobal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobal.get"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(582,22,582,76)"), left{}(), format{}("%c#global.get%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaGlobal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobal.set"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(583,22,583,76)"), left{}(), format{}("%c#global.set%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaGlobalDefn{}(SortGlobalType{}, SortInstrs{}, SortOptionalId{}) : SortGlobalDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(551,27,551,117)"), left{}(), format{}("%c#global%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaGlobalDesc{}(SortOptionalId{}, SortGlobalType{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,27,1245,112)"), left{}(), format{}("%c#globalDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaGlobalType{}(SortMut{}, SortValType{}) : SortGlobalType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalType"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(548,27,548,67)"), left{}(), format{}("%1 %2"), injective{}()] + symbol LblaGrow{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGrow"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,27,90,81)"), left{}(), format{}("%cmemory.grow%r"), injective{}()] + symbol LblaIBinOp{}(SortIValType{}, SortIBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIBinOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,27,78,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIConst{}(SortIValType{}, SortWasmInt{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIConst"), priorities{}(), right{}(), terminals{}("0110"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,27,74,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] + symbol LblaIRelOp{}(SortIValType{}, SortIRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIRelOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,27,81,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIUnOp{}(SortIValType{}, SortIUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIUnOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,27,76,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIf{}(SortVecType{}, SortInstrs{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIf"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(478,22,478,112)"), left{}(), format{}("%c#if%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol LblaImportDefn{}(SortWasmString{}, SortWasmString{}, SortImportDesc{}) : SortImportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aImportDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,27,1243,112)"), left{}(), format{}("%c#import%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaLoad{}(SortValType{}, SortLoadOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLoad"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,22,1001,81)"), left{}(), format{}("%c#load%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaLocal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.get"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,22,522,74)"), left{}(), format{}("%c#local.get%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLocal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.set"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,22,523,74)"), left{}(), format{}("%c#local.set%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLocal'Stop'tee{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.tee"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,22,524,74)"), left{}(), format{}("%c#local.tee%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLoop{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLoop"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,22,488,82)"), left{}(), format{}("%c#loop%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaMemoryDefn{}(SortLimits{}, SortOptionalId{}) : SortMemoryDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aMemoryDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,27,916,101)"), left{}(), format{}("%c#memory%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaMemoryDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aMemoryDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,27,1247,112)"), left{}(), format{}("%c#memoryDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaModuleDecl{}(SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortModuleMetadata{}) : SortModuleDecl{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aModuleDecl"), priorities{}(), right{}(), terminals{}("110101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1375,27,1375,239)"), left{}(), format{}("%c#module%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c)%r"), injective{}()] + symbol LblaNearest{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aNearest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,57)"), left{}(), format{}("%cnearest%r"), injective{}()] + symbol LblaNeg{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aNeg"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,22,19,57)"), left{}(), format{}("%cneg%r"), injective{}()] + symbol LblaNop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aNop"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,27,86,80)"), left{}(), format{}("%cnop%r"), injective{}()] + symbol LblaPopcnt{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aPopcnt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,22,15,55)"), left{}(), format{}("%cpopcnt%r"), injective{}()] + symbol LblaPromote'Unds'f32{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aPromote_f32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,68)"), left{}(), format{}("%cpromote_f32%r"), injective{}()] + symbol LblaReturn{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aReturn"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,27,88,83)"), left{}(), format{}("%creturn%r"), injective{}()] + symbol LblaSelect{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aSelect"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,27,85,83)"), left{}(), format{}("%cselect%r"), injective{}()] + symbol LblaSize{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aSize"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,27,89,81)"), left{}(), format{}("%cmemory.size%r"), injective{}()] + symbol LblaSqrt{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aSqrt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,22,20,57)"), left{}(), format{}("%csqrt%r"), injective{}()] + symbol LblaStartDefn{}(SortInt{}) : SortStartDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aStartDefn"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,26,1206,65)"), left{}(), format{}("%c#start%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaStore{}(SortValType{}, SortStoreOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aStore"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,22,952,84)"), left{}(), format{}("%c#store%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaTableDefn{}(SortLimits{}, SortOptionalId{}) : SortTableDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTableDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,26,873,99)"), left{}(), format{}("%c#table%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaTableDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTableDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,27,1246,112)"), left{}(), format{}("%c#tableDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaTestOp{}(SortIValType{}, SortTestOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTestOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,27,80,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaTrunc{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,22,23,57)"), left{}(), format{}("%ctrunc%r"), injective{}()] + symbol LblaTrunc'Unds'f32'Unds's{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,68)"), left{}(), format{}("%ctrunc_f32_s%r"), injective{}()] + symbol LblaTrunc'Unds'f32'Unds'u{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,68)"), left{}(), format{}("%ctrunc_f32_u%r"), injective{}()] + symbol LblaTrunc'Unds'f64'Unds's{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f64_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,68)"), left{}(), format{}("%ctrunc_f64_s%r"), injective{}()] + symbol LblaTrunc'Unds'f64'Unds'u{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f64_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,68)"), left{}(), format{}("%ctrunc_f64_u%r"), injective{}()] + symbol LblaTypeDefn{}(SortFuncType{}, SortOptionalId{}) : SortTypeDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTypeDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,25,660,95)"), left{}(), format{}("%c#type%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaUnreachable{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aUnreachable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,27,87,88)"), left{}(), format{}("%cunreachable%r"), injective{}()] + symbol LblaVecType{}(SortValTypes{}) : SortVecType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("aVecType"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(245,25,245,67)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] + symbol LblaWrap'Unds'i64{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aWrap_i64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,62)"), left{}(), format{}("%cwrap_i64%r"), injective{}()] hooked-symbol LblabsFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fp.abs"), right{}(), terminals{}("1101"), klabel{}("absFloat"), hook{}("FLOAT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1289,20,1289,105)"), left{}(), format{}("%cabsFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), right{}(), terminals{}("1101"), klabel{}("absInt"), hook{}("INT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(972,18,972,123)"), left{}(), format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblacosFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("acosFloat"), hook{}("FLOAT.acos"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1300,20,1300,76)"), left{}(), format{}("%cacosFloat%r %c(%r %1 %c)%r"), function{}()] @@ -795,7 +795,7 @@ module KWASM-LEMMAS hooked-symbol LblasinFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("asinFloat"), hook{}("FLOAT.asin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1299,20,1299,76)"), left{}(), format{}("%casinFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblatan2Float'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("atan2Float"), hook{}("FLOAT.atan2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1302,20,1302,77)"), left{}(), format{}("%catan2Float%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblatanFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("atanFloat"), hook{}("FLOAT.atan"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1301,20,1301,88)"), left{}(), format{}("%catanFloat%r %c(%r %1 %c)%r"), function{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("bigEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1727,25,1727,61)"), left{}(), format{}("%cBE%r"), injective{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("bigEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1727,25,1727,61)"), left{}(), format{}("%cBE%r"), injective{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("bitRangeInt"), hook{}("INT.bitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(997,18,997,102)"), left{}(), format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] symbol Lblblock'UndsUndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,27,121,78)"), left{}(), format{}("%cblock%r %1 %2 %3 %cend%r %4"), injective{}()] symbol Lblbr'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,36)"), left{}(), format{}("%cbr%r %1"), injective{}()] @@ -821,28 +821,28 @@ module KWASM-LEMMAS hooked-symbol LblexpFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("expFloat"), hook{}("FLOAT.exp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,20,1294,87)"), left{}(), format{}("%cexpFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblexponentBitsFloat'LParUndsRParUnds'FLOAT'Unds'Int'Unds'Float{}(SortFloat{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("exponentBitsFloat"), hook{}("FLOAT.exponentBits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1200,18,1200,90)"), left{}(), format{}("%cexponentBitsFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblexponentFloat'LParUndsRParUnds'FLOAT'Unds'Int'Unds'Float{}(SortFloat{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("exponentFloat"), hook{}("FLOAT.exponent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1208,18,1208,82)"), left{}(), format{}("%cexponentFloat%r %c(%r %1 %c)%r"), function{}()] - symbol Lblf32{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("f32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,51)"), left{}(), format{}("%cf32%r"), injective{}()] - symbol Lblf64{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("f64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,55,87,81)"), left{}(), format{}("%cf64%r"), injective{}()] + symbol Lblf32{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("f32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,51)"), left{}(), format{}("%cf32%r"), injective{}()] + symbol Lblf64{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("f64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,55,87,81)"), left{}(), format{}("%cf64%r"), injective{}()] hooked-symbol LblfillList'LParUndsCommUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("fillList"), hook{}("LIST.fill"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(715,19,715,99)"), left{}(), format{}("%cfillList%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] hooked-symbol LblfindChar'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findChar"), hook{}("STRING.findChar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1460,18,1460,115)"), left{}(), format{}("%cfindChar%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblfindString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findString"), hook{}("STRING.find"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1449,18,1449,110)"), left{}(), format{}("%cfindString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblfloatAdd{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatAdd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,23,44,54)"), left{}(), format{}("%cadd%r"), injective{}()] - symbol LblfloatCopysign{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatCopysign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,23,50,64)"), left{}(), format{}("%ccopysign%r"), injective{}()] - symbol LblfloatDiv{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatDiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,23,47,54)"), left{}(), format{}("%cdiv%r"), injective{}()] - symbol LblfloatEq{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatEq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,23,72,52)"), left{}(), format{}("%ceq%r"), injective{}()] - symbol LblfloatGe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatGe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,23,71,52)"), left{}(), format{}("%cge%r"), injective{}()] - symbol LblfloatGt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatGt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,23,69,52)"), left{}(), format{}("%cgt%r"), injective{}()] - symbol LblfloatLe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatLe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,23,70,52)"), left{}(), format{}("%cle%r"), injective{}()] - symbol LblfloatLt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatLt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,23,68,52)"), left{}(), format{}("%clt%r"), injective{}()] - symbol LblfloatMax{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,54)"), left{}(), format{}("%cmax%r"), injective{}()] - symbol LblfloatMin{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,23,48,54)"), left{}(), format{}("%cmin%r"), injective{}()] - symbol LblfloatMul{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,23,46,54)"), left{}(), format{}("%cmul%r"), injective{}()] - symbol LblfloatNe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatNe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,23,73,52)"), left{}(), format{}("%cne%r"), injective{}()] - symbol LblfloatSub{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatSub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,23,45,54)"), left{}(), format{}("%csub%r"), injective{}()] + symbol LblfloatAdd{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatAdd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,23,44,54)"), left{}(), format{}("%cadd%r"), injective{}()] + symbol LblfloatCopysign{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatCopysign"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,23,50,64)"), left{}(), format{}("%ccopysign%r"), injective{}()] + symbol LblfloatDiv{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatDiv"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,23,47,54)"), left{}(), format{}("%cdiv%r"), injective{}()] + symbol LblfloatEq{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatEq"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,23,72,52)"), left{}(), format{}("%ceq%r"), injective{}()] + symbol LblfloatGe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatGe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,23,71,52)"), left{}(), format{}("%cge%r"), injective{}()] + symbol LblfloatGt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatGt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,23,69,52)"), left{}(), format{}("%cgt%r"), injective{}()] + symbol LblfloatLe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatLe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,23,70,52)"), left{}(), format{}("%cle%r"), injective{}()] + symbol LblfloatLt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatLt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,23,68,52)"), left{}(), format{}("%clt%r"), injective{}()] + symbol LblfloatMax{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMax"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,54)"), left{}(), format{}("%cmax%r"), injective{}()] + symbol LblfloatMin{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMin"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,23,48,54)"), left{}(), format{}("%cmin%r"), injective{}()] + symbol LblfloatMul{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMul"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,23,46,54)"), left{}(), format{}("%cmul%r"), injective{}()] + symbol LblfloatNe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatNe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,23,73,52)"), left{}(), format{}("%cne%r"), injective{}()] + symbol LblfloatSub{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatSub"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,23,45,54)"), left{}(), format{}("%csub%r"), injective{}()] hooked-symbol LblfloorFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("floorFloat"), hook{}("FLOAT.floor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1291,20,1291,89)"), left{}(), format{}("%cfloorFloat%r %c(%r %1 %c)%r"), function{}()] symbol Lblframe'UndsUndsUndsUndsUnds'WASM'Unds'Frame'Unds'Int'Unds'ValTypes'Unds'ValStack'Unds'Map{}(SortInt{}, SortValTypes{}, SortValStack{}, SortMap{}) : SortFrame{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(733,22,733,54)"), left{}(), format{}("%cframe%r %1 %2 %3 %4"), injective{}()] symbol LblfreshInt'LParUndsRParUnds'INT'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), freshGenerator{}(), klabel{}("freshInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1137,18,1137,81)"), left{}(), format{}("%cfreshInt%r %c(%r %1 %c)%r"), private{}(), function{}()] - symbol LblfuncMeta{}(SortOptionalId{}, SortMap{}) : SortFuncMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("funcMeta"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(722,29,722,91)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblfuncMeta{}(SortOptionalId{}, SortMap{}) : SortFuncMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("funcMeta"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(722,29,722,91)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] symbol Lblfunc'Unds'WASM-DATA-COMMON-SYNTAX'Unds'AllocatedKind{}() : SortAllocatedKind{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,30,134,35)"), left{}(), format{}("%cfunc%r"), injective{}()] symbol Lblfuncref'Unds'WASM-TEXT-COMMON-SYNTAX'Unds'TableElemType{}() : SortTableElemType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,30,231,38)"), left{}(), format{}("%cfuncref%r"), injective{}()] symbol LblgatherTypes'LParUndsCommUndsRParUnds'WASM'Unds'VecType'Unds'TypeKeyWord'Unds'TypeDecls{}(SortTypeKeyWord{}, SortTypeDecls{}) : SortVecType{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("gatherTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(623,25,623,85)"), left{}(), format{}("%cgatherTypes%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -851,8 +851,8 @@ module KWASM-LEMMAS symbol Lblglobal'Stop'set'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,27,97,44)"), left{}(), format{}("%cglobal.set%r %1"), injective{}()] symbol Lblglobal'Unds'WASM-DATA-COMMON-SYNTAX'Unds'AllocatedKind{}() : SortAllocatedKind{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,60,134,67)"), left{}(), format{}("%cglobal%r"), injective{}()] symbol Lblgrow'UndsUnds'WASM'Unds'Instr'Unds'Int{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1075,22,1075,31)"), left{}(), format{}("%cgrow%r %1"), injective{}()] - symbol Lbli32{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("i32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,51)"), left{}(), format{}("%ci32%r"), injective{}()] - symbol Lbli64{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("i64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,55,86,81)"), left{}(), format{}("%ci64%r"), injective{}()] + symbol Lbli32{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("i32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,51)"), left{}(), format{}("%ci32%r"), injective{}()] + symbol Lbli64{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("i64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,55,86,81)"), left{}(), format{}("%ci64%r"), injective{}()] symbol Lblif'UndsUndsUnds'else'UndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,27,123,100)"), left{}(), format{}("%cif%r %1 %2 %3 %celse%r %4 %5 %cend%r %6"), injective{}()] symbol Lblif'UndsUndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,27,124,100)"), left{}(), format{}("%cif%r %1 %2 %3 %cend%r %4"), injective{}()] symbol LblinitCurFrameCell{}() : SortCurFrameCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitCurFrameCell%r"), function{}()] @@ -921,31 +921,31 @@ module KWASM-LEMMAS symbol LblinitWasmCell{}() : SortWasmCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitWasmCell%r"), function{}()] symbol Lblinit'Unds'local'UndsUndsUnds'WASM'Unds'Instr'Unds'Int'Unds'Val{}(SortInt{}, SortVal{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("100"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(502,23,502,43)"), left{}(), format{}("%cinit_local%r %1 %2"), injective{}()] symbol Lblinit'Unds'locals'UndsUnds'WASM'Unds'Instr'Unds'ValStack{}(SortValStack{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(503,23,503,48)"), left{}(), format{}("%cinit_locals%r %1"), injective{}()] - symbol LblintAdd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intAdd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,23,27,52)"), left{}(), format{}("%cadd%r"), injective{}()] - symbol LblintAnd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intAnd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,52)"), left{}(), format{}("%cand%r"), injective{}()] - symbol LblintDiv'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intDiv_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(32,23,32,56)"), left{}(), format{}("%cdiv_s%r"), injective{}()] - symbol LblintDiv'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intDiv_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,23,30,56)"), left{}(), format{}("%cdiv_u%r"), injective{}()] - symbol LblintEq{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intEq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,23,56,50)"), left{}(), format{}("%ceq%r"), injective{}()] - symbol LblintGe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGe_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,23,65,54)"), left{}(), format{}("%cge_s%r"), injective{}()] - symbol LblintGe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGe_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,23,63,54)"), left{}(), format{}("%cge_u%r"), injective{}()] - symbol LblintGt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGt_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,23,61,54)"), left{}(), format{}("%cgt_s%r"), injective{}()] - symbol LblintGt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGt_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,23,59,54)"), left{}(), format{}("%cgt_u%r"), injective{}()] - symbol LblintLe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLe_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,23,64,54)"), left{}(), format{}("%cle_s%r"), injective{}()] - symbol LblintLe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLe_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,23,62,54)"), left{}(), format{}("%cle_u%r"), injective{}()] - symbol LblintLt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLt_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,23,60,54)"), left{}(), format{}("%clt_s%r"), injective{}()] - symbol LblintLt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLt_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,23,58,54)"), left{}(), format{}("%clt_u%r"), injective{}()] - symbol LblintMul{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intMul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(29,23,29,52)"), left{}(), format{}("%cmul%r"), injective{}()] - symbol LblintNe{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intNe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,23,57,50)"), left{}(), format{}("%cne%r"), injective{}()] - symbol LblintOr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intOr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,50)"), left{}(), format{}("%cor%r"), injective{}()] - symbol LblintRem'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRem_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,56)"), left{}(), format{}("%crem_s%r"), injective{}()] - symbol LblintRem'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRem_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,23,31,56)"), left{}(), format{}("%crem_u%r"), injective{}()] - symbol LblintRotl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRotl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,54)"), left{}(), format{}("%crotl%r"), injective{}()] - symbol LblintRotr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRotr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,23,41,54)"), left{}(), format{}("%crotr%r"), injective{}()] - symbol LblintShl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,52)"), left{}(), format{}("%cshl%r"), injective{}()] - symbol LblintShr'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShr_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,56)"), left{}(), format{}("%cshr_s%r"), injective{}()] - symbol LblintShr'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShr_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,23,38,56)"), left{}(), format{}("%cshr_u%r"), injective{}()] - symbol LblintSub{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intSub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,23,28,52)"), left{}(), format{}("%csub%r"), injective{}()] - symbol LblintXor{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intXor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,23,36,52)"), left{}(), format{}("%cxor%r"), injective{}()] + symbol LblintAdd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intAdd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,23,27,52)"), left{}(), format{}("%cadd%r"), injective{}()] + symbol LblintAnd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intAnd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,52)"), left{}(), format{}("%cand%r"), injective{}()] + symbol LblintDiv'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intDiv_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(32,23,32,56)"), left{}(), format{}("%cdiv_s%r"), injective{}()] + symbol LblintDiv'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intDiv_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,23,30,56)"), left{}(), format{}("%cdiv_u%r"), injective{}()] + symbol LblintEq{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intEq"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,23,56,50)"), left{}(), format{}("%ceq%r"), injective{}()] + symbol LblintGe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGe_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,23,65,54)"), left{}(), format{}("%cge_s%r"), injective{}()] + symbol LblintGe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGe_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,23,63,54)"), left{}(), format{}("%cge_u%r"), injective{}()] + symbol LblintGt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGt_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,23,61,54)"), left{}(), format{}("%cgt_s%r"), injective{}()] + symbol LblintGt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGt_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,23,59,54)"), left{}(), format{}("%cgt_u%r"), injective{}()] + symbol LblintLe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLe_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,23,64,54)"), left{}(), format{}("%cle_s%r"), injective{}()] + symbol LblintLe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLe_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,23,62,54)"), left{}(), format{}("%cle_u%r"), injective{}()] + symbol LblintLt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLt_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,23,60,54)"), left{}(), format{}("%clt_s%r"), injective{}()] + symbol LblintLt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLt_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,23,58,54)"), left{}(), format{}("%clt_u%r"), injective{}()] + symbol LblintMul{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intMul"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(29,23,29,52)"), left{}(), format{}("%cmul%r"), injective{}()] + symbol LblintNe{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intNe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,23,57,50)"), left{}(), format{}("%cne%r"), injective{}()] + symbol LblintOr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intOr"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,50)"), left{}(), format{}("%cor%r"), injective{}()] + symbol LblintRem'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRem_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,56)"), left{}(), format{}("%crem_s%r"), injective{}()] + symbol LblintRem'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRem_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,23,31,56)"), left{}(), format{}("%crem_u%r"), injective{}()] + symbol LblintRotl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRotl"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,54)"), left{}(), format{}("%crotl%r"), injective{}()] + symbol LblintRotr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRotr"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,23,41,54)"), left{}(), format{}("%crotr%r"), injective{}()] + symbol LblintShl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShl"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,52)"), left{}(), format{}("%cshl%r"), injective{}()] + symbol LblintShr'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShr_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,56)"), left{}(), format{}("%cshr_s%r"), injective{}()] + symbol LblintShr'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShr_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,23,38,56)"), left{}(), format{}("%cshr_u%r"), injective{}()] + symbol LblintSub{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intSub"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,23,28,52)"), left{}(), format{}("%csub%r"), injective{}()] + symbol LblintXor{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intXor"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,23,36,52)"), left{}(), format{}("%cxor%r"), injective{}()] hooked-symbol LblintersectSet'LParUndsCommUndsRParUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("intersectSet"), hook{}("SET.intersection"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(569,18,569,88)"), left{}(), format{}("%cintersectSet%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol Lblis'Hash'Layout{}(SortK{}) : SortBool{} [functional{}(), predicate{}("#Layout"), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cis#Layout%r %c(%r %1 %c)%r"), function{}()] symbol LblisAlignArg{}(SortK{}) : SortBool{} [functional{}(), predicate{}("AlignArg"), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cisAlignArg%r %c(%r %1 %c)%r"), function{}()] @@ -1210,19 +1210,19 @@ module KWASM-LEMMAS hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), klabel{}("lengthBytes"), hook{}("BYTES.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1853,18,1853,99)"), left{}(), format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthString"), hook{}("STRING.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1414,18,1414,84)"), left{}(), format{}("%clengthString%r %c(%r %1 %c)%r"), function{}()] symbol LbllengthValTypes'LParUndsRParUnds'WASM-DATA'Unds'Int'Unds'ValTypes{}(SortValTypes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthValTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,20,251,69)"), left{}(), format{}("%clengthValTypes%r %c(%r %1 %c)%r"), function{}()] - symbol LbllimitsMin{}(SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("limitsMin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,23,235,70)"), left{}(), format{}("%c#limitsMin%r %c(%r %1 %c)%r"), injective{}()] - symbol LbllimitsMinMax{}(SortInt{}, SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("limitsMinMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,23,236,70)"), left{}(), format{}("%c#limits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LbllistInt{}(SortInt{}, SortInts{}) : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllistStmt{}(SortEmptyStmt{}, SortEmptyStmts{}) : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllistValTypes{}(SortValType{}, SortValTypes{}) : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listValTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("littleEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1726,25,1726,64)"), left{}(), format{}("%cLE%r"), injective{}()] - symbol LblloadOpLoad{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,24,108,62)"), left{}(), format{}("%cload%r"), injective{}()] - symbol LblloadOpLoad16'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad16_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,24,113,66)"), left{}(), format{}("%cload16_s%r"), injective{}()] - symbol LblloadOpLoad16'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad16_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,24,110,66)"), left{}(), format{}("%cload16_u%r"), injective{}()] - symbol LblloadOpLoad32'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,24,114,66)"), left{}(), format{}("%cload32_s%r"), injective{}()] - symbol LblloadOpLoad32'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,24,111,66)"), left{}(), format{}("%cload32_u%r"), injective{}()] - symbol LblloadOpLoad8'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad8_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,24,112,65)"), left{}(), format{}("%cload8_s%r"), injective{}()] - symbol LblloadOpLoad8'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad8_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,24,109,65)"), left{}(), format{}("%cload8_u%r"), injective{}()] + symbol LbllimitsMin{}(SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("limitsMin"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,23,235,70)"), left{}(), format{}("%c#limitsMin%r %c(%r %1 %c)%r"), injective{}()] + symbol LbllimitsMinMax{}(SortInt{}, SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("limitsMinMax"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,23,236,70)"), left{}(), format{}("%c#limits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LbllistInt{}(SortInt{}, SortInts{}) : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("listInt"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllistStmt{}(SortEmptyStmt{}, SortEmptyStmts{}) : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("listStmt"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllistValTypes{}(SortValType{}, SortValTypes{}) : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("listValTypes"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("littleEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1726,25,1726,64)"), left{}(), format{}("%cLE%r"), injective{}()] + symbol LblloadOpLoad{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,24,108,62)"), left{}(), format{}("%cload%r"), injective{}()] + symbol LblloadOpLoad16'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad16_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,24,113,66)"), left{}(), format{}("%cload16_s%r"), injective{}()] + symbol LblloadOpLoad16'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad16_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,24,110,66)"), left{}(), format{}("%cload16_u%r"), injective{}()] + symbol LblloadOpLoad32'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,24,114,66)"), left{}(), format{}("%cload32_s%r"), injective{}()] + symbol LblloadOpLoad32'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,24,111,66)"), left{}(), format{}("%cload32_u%r"), injective{}()] + symbol LblloadOpLoad8'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad8_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,24,112,65)"), left{}(), format{}("%cload8_s%r"), injective{}()] + symbol LblloadOpLoad8'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad8_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,24,109,65)"), left{}(), format{}("%cload8_u%r"), injective{}()] symbol Lblload'LBraUndsUndsUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'IValType'Unds'Int'Unds'Int'Unds'Signedness'Unds'Bytes{}(SortIValType{}, SortInt{}, SortInt{}, SortSignedness{}, SortBytes{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("11000001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,22,1003,68)"), left{}(), format{}("%cload%r %c{%r %1 %2 %3 %4 %5 %c}%r"), injective{}()] symbol Lblload'LBraUndsUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'IValType'Unds'Int'Unds'Int'Unds'Signedness{}(SortIValType{}, SortInt{}, SortInt{}, SortSignedness{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("1100001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1002,22,1002,62)"), left{}(), format{}("%cload%r %c{%r %1 %2 %3 %4 %c}%r"), injective{}()] symbol Lbllocal'Stop'get'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,27,98,43)"), left{}(), format{}("%clocal.get%r %1"), injective{}()] @@ -1242,9 +1242,9 @@ module KWASM-LEMMAS hooked-symbol LblminFloat'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fp.min"), right{}(), terminals{}("110101"), klabel{}("minFloat"), hook{}("FLOAT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,20,1304,93)"), left{}(), format{}("%cminFloat%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblminInt'LParUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 #2) #1 #2)"), right{}(), terminals{}("110101"), hook{}("INT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(963,18,963,118)"), left{}(), format{}("%cminInt%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblminValueFloat'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("minValueFloat"), hook{}("FLOAT.minValue"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,20,1307,105)"), left{}(), format{}("%cminValueFloat%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - symbol LblmoduleMeta{}(SortOptionalId{}, SortMap{}, SortOptionalString{}) : SortModuleMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("moduleMeta"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1382,31,1382,121)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblmutConst{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("mutConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,53)"), left{}(), format{}("%cconst%r"), injective{}()] - symbol LblmutVar{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("mutVar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,51)"), left{}(), format{}("%cvar%r"), injective{}()] + symbol LblmoduleMeta{}(SortOptionalId{}, SortMap{}, SortOptionalString{}) : SortModuleMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("moduleMeta"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1382,31,1382,121)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblmutConst{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("mutConst"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,53)"), left{}(), format{}("%cconst%r"), injective{}()] + symbol LblmutVar{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("mutVar"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,51)"), left{}(), format{}("%cvar%r"), injective{}()] hooked-symbol LblnewUUID'Unds'STRING-COMMON'Unds'String{}() : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), impure{}(), hook{}("STRING.uuid"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1566,21,1566,67)"), left{}(), format{}("%cnewUUID%r"), function{}()] symbol LblnoCurFrameCell{}() : SortCurFrameCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("CurFrameCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoCurFrameCell%r"), injective{}()] symbol LblnoCurModIdxCell{}() : SortCurModIdxCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("CurModIdxCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoCurModIdxCell%r"), injective{}()] @@ -1304,7 +1304,7 @@ module KWASM-LEMMAS symbol LblnoTypesCell{}() : SortTypesCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("TypesCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoTypesCell%r"), injective{}()] symbol LblnoValstackCell{}() : SortValstackCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("ValstackCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoValstackCell%r"), injective{}()] symbol LblnoWasmCell{}() : SortWasmCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("WasmCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoWasmCell%r"), injective{}()] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), klabel{}("notBool_"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,176)"), left{}(), format{}("%cnotBool%r %1"), function{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("notBool_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,176)"), left{}(), format{}("%cnotBool%r %1"), function{}()] symbol Lbloffset'EqlsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'OffsetArg'Unds'WasmInt{}(SortWasmInt{}) : SortOffsetArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,27,110,43)"), left{}(), format{}("%coffset=%r %1"), injective{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("ordChar"), hook{}("STRING.ord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1424,18,1424,69)"), left{}(), format{}("%cordChar%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblpadLeftBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("padLeftBytes"), hook{}("BYTES.padLeft"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1836,20,1836,95)"), left{}(), format{}("%cpadLeftBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] @@ -1640,17 +1640,17 @@ module KWASM-LEMMAS symbol LblsequenceStmts'LParUndsRParUnds'WASM'Unds'K'Unds'Stmts{}(SortStmts{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sequenceStmts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(274,18,274,53)"), left{}(), format{}("%csequenceStmts%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("signExtendBitRangeInt"), hook{}("INT.signExtendBitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(998,18,998,112)"), left{}(), format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblsignFloat'LParUndsRParUnds'FLOAT'Unds'Bool'Unds'Float{}(SortFloat{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("signFloat"), hook{}("FLOAT.sign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1217,19,1217,80)"), left{}(), format{}("%csignFloat%r %c(%r %1 %c)%r"), function{}()] - symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("signedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1736,25,1736,62)"), left{}(), format{}("%cSigned%r"), injective{}()] + symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("signedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1736,25,1736,62)"), left{}(), format{}("%cSigned%r"), injective{}()] hooked-symbol LblsinFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sinFloat"), hook{}("FLOAT.sin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1296,20,1296,87)"), left{}(), format{}("%csinFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), klabel{}("sizeList"), hook{}("LIST.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(742,18,742,121)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sizeMap"), hook{}("MAP.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(384,18,384,103)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'SET'Unds'Int'Unds'Set{}(SortSet{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("size"), hook{}("SET.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(604,18,604,80)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] symbol LblsqrtFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sqrtFloat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1305,20,1305,58)"), left{}(), format{}("%csqrtFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("srandInt"), hook{}("INT.srand"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1032,16,1032,64)"), left{}(), format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}()] - symbol LblstoreOpStore{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,66)"), left{}(), format{}("%cstore%r"), injective{}()] - symbol LblstoreOpStore16{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore16"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,24,106,66)"), left{}(), format{}("%cstore16%r"), injective{}()] - symbol LblstoreOpStore32{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,24,107,66)"), left{}(), format{}("%cstore32%r"), injective{}()] - symbol LblstoreOpStore8{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore8"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,24,105,66)"), left{}(), format{}("%cstore8%r"), injective{}()] + symbol LblstoreOpStore{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,66)"), left{}(), format{}("%cstore%r"), injective{}()] + symbol LblstoreOpStore16{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore16"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,24,106,66)"), left{}(), format{}("%cstore16%r"), injective{}()] + symbol LblstoreOpStore32{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,24,107,66)"), left{}(), format{}("%cstore32%r"), injective{}()] + symbol LblstoreOpStore8{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore8"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,24,105,66)"), left{}(), format{}("%cstore8%r"), injective{}()] symbol Lblstore'LBraUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'Int'Unds'Int'Unds'Number{}(SortInt{}, SortInt{}, SortNumber{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("110001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,22,955,51)"), left{}(), format{}("%cstore%r %c{%r %1 %2 %3 %c}%r"), injective{}()] symbol LblstructureModule'LParUndsCommUndsRParUnds'WASM-TEXT'Unds'ModuleDecl'Unds'Defns'Unds'OptionalId{}(SortDefns{}, SortOptionalId{}) : SortModuleDecl{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("structureModule"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(656,28,656,76)"), left{}(), format{}("%cstructureModule%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblstructureModules'LParUndsRParUnds'WASM-TEXT'Unds'Stmts'Unds'Stmts{}(SortStmts{}) : SortStmts{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("structureModules"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(650,22,650,58)"), left{}(), format{}("%cstructureModules%r %c(%r %1 %c)%r"), function{}()] @@ -1670,11 +1670,11 @@ module KWASM-LEMMAS symbol LblunfoldDefns'LParUndsRParUnds'WASM-TEXT'Unds'Defns'Unds'Defns{}(SortDefns{}) : SortDefns{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldDefns"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(392,22,392,71)"), left{}(), format{}("%cunfoldDefns%r %c(%r %1 %c)%r"), function{}()] symbol LblunfoldInstrs'LParUndsRParUnds'WASM-TEXT'Unds'Instrs'Unds'Instrs{}(SortInstrs{}) : SortInstrs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldInstrs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,24,558,67)"), left{}(), format{}("%cunfoldInstrs%r %c(%r %1 %c)%r"), function{}()] symbol LblunfoldStmts'LParUndsRParUnds'WASM-TEXT'Unds'Stmts'Unds'Stmts{}(SortStmts{}) : SortStmts{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldStmts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(391,22,391,71)"), left{}(), format{}("%cunfoldStmts%r %c(%r %1 %c)%r"), function{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("unsignedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1737,25,1737,66)"), left{}(), format{}("%cUnsigned%r"), injective{}()] + symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("unsignedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1737,25,1737,66)"), left{}(), format{}("%cUnsigned%r"), injective{}()] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("updateList"), hook{}("LIST.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,19,706,96)"), left{}(), format{}("%cupdateList%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("updateMap"), hook{}("MAP.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(335,18,335,91)"), left{}(), format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("values"), hook{}("MAP.values"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(376,19,376,76)"), left{}(), format{}("%cvalues%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), klabel{}("~Int_"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,18,931,172)"), left{}(), format{}("%c~Int%r %1"), function{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("~Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,18,931,172)"), left{}(), format{}("%c~Int%r %1"), function{}()] // generated axioms axiom{R} \exists{R} (Val:SortNumber{}, \equals{SortNumber{}, R} (Val:SortNumber{}, inj{SortInt{}, SortNumber{}} (From:SortInt{}))) [subsort{SortInt{}, SortNumber{}}()] // subsort diff --git a/test/regression-wasm/test-simple-arithmetic-vdefinition.kore b/test/regression-wasm/test-simple-arithmetic-vdefinition.kore index 860f3386a3..b2ac0766c9 100644 --- a/test/regression-wasm/test-simple-arithmetic-vdefinition.kore +++ b/test/regression-wasm/test-simple-arithmetic-vdefinition.kore @@ -445,9 +445,9 @@ module KWASM-LEMMAS hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), hook{}("BYTES.empty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1716,20,1716,69)"), left{}(), format{}("%c.Bytes%r"), function{}()] hooked-symbol Lbl'Stop'FuncDefCellMap{}() : SortFuncDefCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.FuncDefCellMap%r"), function{}()] hooked-symbol Lbl'Stop'GlobalInstCellMap{}() : SortGlobalInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.GlobalInstCellMap%r"), function{}()] - symbol Lbl'Stop'Identifier{}() : SortOptionalId{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Identifier"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,27,35,58)"), left{}(), format{}("%c%r"), injective{}()] + symbol Lbl'Stop'Identifier{}() : SortOptionalId{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".Identifier"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,27,35,58)"), left{}(), format{}("%c%r"), injective{}()] symbol Lbl'Stop'Int'Unds'WASM-DATA'Unds'OptionalInt{}() : SortOptionalInt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(226,34,226,39)"), left{}(), format{}("%c.Int%r"), injective{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(659,19,659,146)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(659,19,659,146)"), left{}(), format{}("%c.List%r"), function{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Defns'Unds'Defn'Unds'Defns'QuotRBraUnds'Defns{}() : SortDefns{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,27,59,65)"), left{}(), format{}("%c.Defns%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Instrs'Unds'Instr'Unds'Instrs'QuotRBraUnds'Instrs{}() : SortInstrs{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,27,58,65)"), left{}(), format{}("%c.Instrs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts'QuotRBraUnds'Stmts{}() : SortStmts{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,27,60,65)"), left{}(), format{}("%c.Stmts%r"), injective{}()] @@ -455,15 +455,15 @@ module KWASM-LEMMAS symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-DATA-COMMON-SYNTAX'Unds'DataString'Unds'WasmString'Unds'DataString'QuotRBraUnds'DataString{}() : SortDataString{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listWasmString\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,27,54,71)"), left{}(), format{}("%c.DataString%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-DATA-COMMON-SYNTAX'Unds'ElemSegment'Unds'Index'Unds'ElemSegment'QuotRBraUnds'ElemSegment{}() : SortElemSegment{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listIndex\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,28,75,62)"), left{}(), format{}("%c.ElemSegment%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'LocalDecls'Unds'LocalDecl'Unds'LocalDecls'QuotRBraUnds'LocalDecls{}() : SortLocalDecls{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listLocalDecl\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(216,27,216,77)"), left{}(), format{}("%c.LocalDecls%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listInt'QuotRBraUnds'Ints{}() : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listInt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%c.Ints%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listStmt'QuotRBraUnds'EmptyStmts{}() : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%c.EmptyStmts%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listValTypes'QuotRBraUnds'ValTypes{}() : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listValTypes\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%c.ValTypes%r"), injective{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,18,259,128)"), left{}(), format{}("%c.Map%r"), function{}()] + symbol Lbl'Stop'List'LBraQuot'listInt'QuotRBraUnds'Ints{}() : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".List{\"listInt\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%c.Ints%r"), injective{}()] + symbol Lbl'Stop'List'LBraQuot'listStmt'QuotRBraUnds'EmptyStmts{}() : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(".List{\"listStmt\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%c.EmptyStmts%r"), injective{}()] + symbol Lbl'Stop'List'LBraQuot'listValTypes'QuotRBraUnds'ValTypes{}() : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".List{\"listValTypes\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%c.ValTypes%r"), injective{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,18,259,128)"), left{}(), format{}("%c.Map%r"), function{}()] hooked-symbol Lbl'Stop'MemInstCellMap{}() : SortMemInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.MemInstCellMap%r"), function{}()] hooked-symbol Lbl'Stop'ModuleInstCellMap{}() : SortModuleInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.ModuleInstCellMap%r"), function{}()] symbol Lbl'Stop'Mut'Unds'WASM-DATA'Unds'Mut{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(314,20,314,25)"), left{}(), format{}("%c.Mut%r"), injective{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,122)"), left{}(), format{}("%c.Set%r"), function{}()] - symbol Lbl'Stop'String{}() : SortOptionalString{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".String"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,31,1383,65)"), left{}(), format{}("%c.String%r"), injective{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,122)"), left{}(), format{}("%c.Set%r"), function{}()] + symbol Lbl'Stop'String{}() : SortOptionalString{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(".String"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,31,1383,65)"), left{}(), format{}("%c.String%r"), injective{}()] hooked-symbol Lbl'Stop'TabInstCellMap{}() : SortTabInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.TabInstCellMap%r"), function{}()] symbol Lbl'Stop'Type'Unds'WASM-DATA'Unds'Type{}() : SortType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(260,21,260,27)"), left{}(), format{}("%c.Type%r"), injective{}()] symbol Lbl'Stop'ValStack'Unds'WASM-DATA'Unds'ValStack{}() : SortValStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(408,25,408,35)"), left{}(), format{}("%c.ValStack%r"), injective{}()] @@ -566,18 +566,18 @@ module KWASM-LEMMAS hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Bytes"), hook{}("BYTES.int2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1766,20,1766,104)"), left{}(), format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2Float'LParUndsCommUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortFloat{} [latex{}("{\\\\it{}Int2Float}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Float"), hook{}("FLOAT.int2float"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1342,20,1342,131)"), left{}(), format{}("%cInt2Float%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Int2String"), hook{}("STRING.int2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1516,21,1516,103)"), left{}(), format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,20,678,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,19,725,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,19,667,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(282,20,282,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,18,301,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,20,678,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,19,725,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,19,667,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(282,20,282,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,18,301,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol LblMemInstCellMap'Coln'in'Unds'keys{}(SortMAddrCell{}, SortMemInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblMemInstCellMapItem{}(SortMAddrCell{}, SortMemInstCell{}) : SortMemInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] hooked-symbol LblModuleInstCellMap'Coln'in'Unds'keys{}(SortModIdxCell{}, SortModuleInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblModuleInstCellMapItem{}(SortModIdxCell{}, SortModuleInstCell{}) : SortModuleInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Base'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'Int{}(SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("String2Base"), hook{}("STRING.string2base"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1518,21,1518,98)"), left{}(), format{}("%cString2Base%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblString2Bool'LParUndsRParUnds'STRING-COMMON'Unds'Bool'Unds'String{}(SortString{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1473,19,1473,48)"), left{}(), format{}("%cString2Bool%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Bytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'String{}(SortString{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bytes"), hook{}("BYTES.string2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1778,20,1778,88)"), left{}(), format{}("%cString2Bytes%r %c(%r %1 %c)%r"), function{}()] @@ -586,24 +586,24 @@ module KWASM-LEMMAS hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Int"), hook{}("STRING.string2int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1515,21,1515,91)"), left{}(), format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblTabInstCellMap'Coln'in'Unds'keys{}(SortTAddrCell{}, SortTabInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblTabInstCellMapItem{}(SortTAddrCell{}, SortTabInstCell{}) : SortTabInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] - symbol LblWasmInt{}(SortWasmIntToken{}) : SortWasmInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0"), klabel{}("WasmInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,24,81,78)"), left{}(), format{}("%1"), avoid{}(), function{}()] + symbol LblWasmInt{}(SortWasmIntToken{}) : SortWasmInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), symbol'Kywd'{}("WasmInt"), priorities{}(), right{}(), terminals{}("0"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,24,81,78)"), left{}(), format{}("%1"), avoid{}(), function{}()] symbol LblWasmIntToken2Int'LParUndsRParUnds'WASM-TEXT'Unds'Int'Unds'WasmIntToken{}(SortWasmIntToken{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntToken2Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(350,23,350,72)"), left{}(), format{}("%cWasmIntToken2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblWasmIntToken2String'LParUndsRParUnds'WASM-TEXT'Unds'String'Unds'WasmIntToken{}(SortWasmIntToken{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntToken2String"), hook{}("STRING.token2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(348,23,348,111)"), left{}(), format{}("%cWasmIntToken2String%r %c(%r %1 %c)%r"), function{}()] symbol LblWasmIntTokenString2Int'LParUndsRParUnds'WASM-TEXT'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntTokenString2Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,23,349,72)"), left{}(), format{}("%cWasmIntTokenString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.rem roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.rem"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,20,1248,182)"), left{}(Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c%%Float%r %2"), function{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_%Int_"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,18,940,170)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), klabel{}("_&Int_"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,18,951,182)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_%Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,18,940,170)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_&Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,18,951,182)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] symbol Lbl'UndsLPar'elem'UndsRParUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TableSpec'Unds'TableElemType'Unds'ElemSegment{}(SortTableElemType{}, SortElemSegment{}) : SortTableSpec{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("01101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(225,26,225,65)"), left{}(), format{}("%1 %c(%r %celem%r %2 %c)%r"), injective{}()] hooked-symbol Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.mul roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,20,1246,184)"), left{}(Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c*Float%r %2"), function{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), klabel{}("_*Int_"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,18,936,181)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_*Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,18,936,181)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] symbol Lbl'UndsPlusPlusUndsUnds'WASM-DATA'Unds'ValStack'Unds'ValStack'Unds'ValStack{}(SortValStack{}, SortValStack{}) : SortValStack{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(410,25,410,69)"), left{}(), format{}("%1 %c++%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), hook{}("BYTES.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1863,20,1863,89)"), left{}(), format{}("%1 %c+Bytes%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(fp.add roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,20,1250,181)"), left{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c+Float%r %2"), function{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), klabel{}("_+Int_"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,18,945,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_+Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,18,945,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1406,21,1406,139)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), format{}("%1 %c+String%r %2"), function{}()] symbol Lbl'UndsPlusUndsUnds'WASM-DATA'Unds'ValTypes'Unds'ValTypes'Unds'ValTypes{}(SortValTypes{}, SortValTypes{}) : SortValTypes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(267,25,267,68)"), left{}(), format{}("%1 %c+%r %2"), function{}()] hooked-symbol Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(fp.sub roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1251,20,1251,181)"), left{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c-Float%r %2"), function{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), klabel{}("_-Int_"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_-Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,18,322,120)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] symbol Lbl'UndsStopUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'FValType'Unds'LoadOpM{}(SortFValType{}, SortLoadOpM{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,27,106,46)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] symbol Lbl'UndsStopUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'FValType'Unds'StoreOpM{}(SortFValType{}, SortStoreOpM{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,27,104,48)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] @@ -620,50 +620,50 @@ module KWASM-LEMMAS symbol Lbl'UndsStopUndsUndsUndsUnds'WASM-NUMERIC'Unds'Val'Unds'IValType'Unds'IRelOp'Unds'Int'Unds'Int{}(SortIValType{}, SortIRelOp{}, SortInt{}, SortInt{}) : SortVal{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), priorities{}(), right{}(), terminals{}("01000"), klabel{}("intRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,20,324,81)"), left{}(), format{}("%1 %c.%r %2 %3 %4"), function{}()] symbol Lbl'UndsStopUndsUndsUndsUnds'WASM'Unds'Instr'Unds'IValType'Unds'StoreOp'Unds'Int'Unds'Int{}(SortIValType{}, SortStoreOp{}, SortInt{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("01000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,22,953,49)"), left{}(), format{}("%1 %c.%r %2 %3 %4"), injective{}()] hooked-symbol Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.div roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.div"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,20,1247,184)"), left{}(Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c/Float%r %2"), function{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_/Int_"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(939,18,939,172)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_/Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(939,18,939,172)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] symbol Lbl'UndsColnUndsUnds'WASM-DATA'Unds'ValStack'Unds'Val'Unds'ValStack{}(SortVal{}, SortValStack{}) : SortValStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(409,25,409,46)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ll_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shlInt"), terminals{}("010"), klabel{}("_<=Float%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), klabel{}("_>=Int_"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1009,19,1009,176)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>=Int_"), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1009,19,1009,176)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1553,19,1553,82)"), left{}(), format{}("%1 %c>=String%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), klabel{}("_>>Int_"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,18,948,172)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>>Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,18,948,172)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'Float'UndsUnds'FLOAT'Unds'Bool'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fg.gt"), right{}(), terminals{}("010"), hook{}("FLOAT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1325,19,1325,147)"), left{}(Lbl'Unds-GT-'Float'UndsUnds'FLOAT'Unds'Bool'Unds'Float'Unds'Float{}()), format{}("%1 %c>Float%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), klabel{}("_>Int_"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,19,1010,171)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>Int_"), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,19,1010,171)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1552,19,1552,82)"), left{}(), format{}("%1 %c>String%r %2"), function{}()] hooked-symbol Lbl'Unds'FuncDefCellMap'Unds'{}(SortFuncDefCellMap{}, SortFuncDefCellMap{}) : SortFuncDefCellMap{} [unit{}(Lbl'Stop'FuncDefCellMap{}()), element{}(LblFuncDefCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'Unds'GlobalInstCellMap'Unds'{}(SortGlobalInstCellMap{}, SortGlobalInstCellMap{}) : SortGlobalInstCellMap{} [unit{}(Lbl'Stop'GlobalInstCellMap{}()), element{}(LblGlobalInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(651,19,651,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,18,251,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(651,19,651,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,18,251,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'MemInstCellMap'Unds'{}(SortMemInstCellMap{}, SortMemInstCellMap{}) : SortMemInstCellMap{} [unit{}(Lbl'Stop'MemInstCellMap{}()), element{}(LblMemInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'Unds'ModuleInstCellMap'Unds'{}(SortModuleInstCellMap{}, SortModuleInstCellMap{}) : SortModuleInstCellMap{} [unit{}(Lbl'Stop'ModuleInstCellMap{}()), element{}(LblModuleInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'TabInstCellMap'Unds'{}(SortTabInstCellMap{}, SortTabInstCellMap{}) : SortTabInstCellMap{} [unit{}(Lbl'Stop'TabInstCellMap{}()), element{}(LblTabInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), hook{}("BYTES.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,20,1789,90)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,19,687,107)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,18,310,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,18,310,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101"), hook{}("BYTES.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1798,18,1798,62)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,20,292,138)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), klabel{}("_^%Int__"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(934,18,934,138)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^%Int__"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(934,18,934,138)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] hooked-symbol Lbl'UndsXor-'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}^{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), right{}(), terminals{}("010"), hook{}("FLOAT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,20,1244,98)"), left{}(Lbl'UndsXor-'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c^Float%r %2"), function{}()] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), klabel{}("_^Int_"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,18,933,177)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,18,933,177)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Defns'Unds'Defn'Unds'Defns{}(SortDefn{}, SortDefns{}) : SortDefns{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,27,59,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Instrs'Unds'Instr'Unds'Instrs{}(SortInstr{}, SortInstrs{}) : SortInstrs{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,27,58,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts{}(SortStmt{}, SortStmts{}) : SortStmts{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,27,60,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] @@ -688,98 +688,98 @@ module KWASM-LEMMAS symbol Lbl'UndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TableType'Unds'TextLimits'Unds'TableElemType{}(SortTextLimits{}, SortTableElemType{}) : SortTableType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(230,26,230,49)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TextLimits'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortTextLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(157,33,157,39)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'FuncSpec'Unds'TypeUse'Unds'LocalDecls'Unds'Instrs{}(SortTypeUse{}, SortLocalDecls{}, SortInstrs{}) : SortFuncSpec{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(204,25,204,49)"), left{}(), format{}("%1 %2 %3"), injective{}()] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andBool_"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(823,19,823,189)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andThenBool_"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(824,19,824,151)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(823,19,823,189)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andThenBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(824,19,824,151)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] symbol Lbl'Unds'appendDefn'UndsUnds'WASM-TEXT'Unds'Defns'Unds'Defns'Unds'Defn{}(SortDefns{}, SortDefn{}) : SortDefns{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(403,22,403,55)"), left{}(), format{}("%1 %cappendDefn%r %2"), function{}()] symbol Lbl'Unds'appendInstrs'UndsUnds'WASM-TEXT'Unds'Instrs'Unds'Instrs'Unds'Instrs{}(SortInstrs{}, SortInstrs{}) : SortInstrs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(565,23,565,66)"), left{}(), format{}("%1 %cappendInstrs%r %2"), function{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_divInt_"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(942,18,942,121)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_divInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(942,18,942,121)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1021,19,1021,52)"), left{}(), format{}("%1 %cdividesInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_impliesBool_"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,19,828,150)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_impliesBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,19,828,150)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(734,19,734,101)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(368,19,368,93)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_modInt_"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(943,18,943,121)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orBool_"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(826,19,826,184)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orElseBool_"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(827,19,827,148)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_modInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(943,18,943,121)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(826,19,826,184)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orElseBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(827,19,827,148)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] symbol Lbl'Unds'up'Slsh'Int'UndsUnds'WASM'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1195,20,1195,46)"), left{}(), format{}("%1 %cup/Int%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_xorBool_"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(825,19,825,143)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), klabel{}("_xorInt_"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,188)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(268,18,268,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), klabel{}("_|Int_"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,179)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(825,19,825,143)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorInt_"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,188)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(268,18,268,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|Int_"), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,179)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,18,558,88)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] - symbol LblaAbs{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aAbs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,57)"), left{}(), format{}("%cabs%r"), injective{}()] - symbol LblaBlock{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aBlock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,22,440,84)"), left{}(), format{}("%c#block%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaBr{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(452,22,452,53)"), left{}(), format{}("%c#br%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaBr'Unds'if{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr_if"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,22,460,66)"), left{}(), format{}("%c#br_if%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaBr'Unds'table{}(SortInts{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr_table"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,22,469,73)"), left{}(), format{}("%c#br_table%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCall{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,22,777,55)"), left{}(), format{}("%c#call%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCall'Unds'indirect{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aCall_indirect"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(789,22,789,82)"), left{}(), format{}("%c#call_indirect%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCeil{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aCeil"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,22,22,57)"), left{}(), format{}("%cceil%r"), injective{}()] - symbol LblaClz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aClz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,22,13,52)"), left{}(), format{}("%cclz%r"), injective{}()] - symbol LblaConvert'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,72)"), left{}(), format{}("%cconvert_i32_s%r"), injective{}()] - symbol LblaConvert'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,72)"), left{}(), format{}("%cconvert_i32_u%r"), injective{}()] - symbol LblaConvert'Unds'i64'Unds's{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i64_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,72)"), left{}(), format{}("%cconvert_i64_s%r"), injective{}()] - symbol LblaConvert'Unds'i64'Unds'u{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i64_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,72)"), left{}(), format{}("%cconvert_i64_u%r"), injective{}()] - symbol LblaCtz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aCtz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,52)"), left{}(), format{}("%cctz%r"), injective{}()] - symbol LblaCvtOp{}(SortValType{}, SortCvtOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aCvtOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,27,83,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaDataDefn{}(SortInt{}, SortInstrs{}, SortBytes{}) : SortDataDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aDataDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1174,25,1174,101)"), left{}(), format{}("%c#data%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaDemote'Unds'f64{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aDemote_f64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,66)"), left{}(), format{}("%cdemote_f64%r"), injective{}()] - symbol LblaDrop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aDrop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,27,84,81)"), left{}(), format{}("%cdrop%r"), injective{}()] - symbol LblaElemDefn{}(SortInt{}, SortInstrs{}, SortInts{}) : SortElemDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aElemDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,25,1143,107)"), left{}(), format{}("%c#elem%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaEqz{}() : SortTestOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aEqz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,23,53,50)"), left{}(), format{}("%ceqz%r"), injective{}()] - symbol LblaExportDefn{}(SortWasmString{}, SortInt{}) : SortExportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aExportDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1223,27,1223,95)"), left{}(), format{}("%c#export%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaExtend'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aExtend_i32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,70)"), left{}(), format{}("%cextend_i32_s%r"), injective{}()] - symbol LblaExtend'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aExtend_i32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,70)"), left{}(), format{}("%cextend_i32_u%r"), injective{}()] - symbol LblaFBinOp{}(SortFValType{}, SortFBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFBinOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,27,79,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFConst{}(SortFValType{}, SortNumber{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0110"), klabel{}("aFConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,27,75,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] - symbol LblaFRelOp{}(SortFValType{}, SortFRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,27,82,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFUnOp{}(SortFValType{}, SortFUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFUnOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,27,77,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFloor{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aFloor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,57)"), left{}(), format{}("%cfloor%r"), injective{}()] - symbol LblaFuncDefn{}(SortInt{}, SortVecType{}, SortInstrs{}, SortFuncMetadata{}) : SortFuncDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("aFuncDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(689,25,689,123)"), left{}(), format{}("%c#func%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol LblaFuncDesc{}(SortOptionalId{}, SortInt{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aFuncDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,27,1244,112)"), left{}(), format{}("%c#funcDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaFuncType{}(SortVecType{}, SortVecType{}) : SortFuncType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFuncType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,25,248,72)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] - symbol LblaGlobal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aGlobal.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(582,22,582,76)"), left{}(), format{}("%c#global.get%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaGlobal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aGlobal.set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(583,22,583,76)"), left{}(), format{}("%c#global.set%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaGlobalDefn{}(SortGlobalType{}, SortInstrs{}, SortOptionalId{}) : SortGlobalDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aGlobalDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(551,27,551,117)"), left{}(), format{}("%c#global%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaGlobalDesc{}(SortOptionalId{}, SortGlobalType{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aGlobalDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,27,1245,112)"), left{}(), format{}("%c#globalDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaGlobalType{}(SortMut{}, SortValType{}) : SortGlobalType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("00"), klabel{}("aGlobalType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(548,27,548,67)"), left{}(), format{}("%1 %2"), injective{}()] - symbol LblaGrow{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aGrow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,27,90,81)"), left{}(), format{}("%cmemory.grow%r"), injective{}()] - symbol LblaIBinOp{}(SortIValType{}, SortIBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIBinOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,27,78,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIConst{}(SortIValType{}, SortWasmInt{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0110"), klabel{}("aIConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,27,74,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] - symbol LblaIRelOp{}(SortIValType{}, SortIRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,27,81,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIUnOp{}(SortIValType{}, SortIUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIUnOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,27,76,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIf{}(SortVecType{}, SortInstrs{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("aIf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(478,22,478,112)"), left{}(), format{}("%c#if%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol LblaImportDefn{}(SortWasmString{}, SortWasmString{}, SortImportDesc{}) : SortImportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aImportDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,27,1243,112)"), left{}(), format{}("%c#import%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaLoad{}(SortValType{}, SortLoadOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,22,1001,81)"), left{}(), format{}("%c#load%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaLocal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,22,522,74)"), left{}(), format{}("%c#local.get%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLocal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,22,523,74)"), left{}(), format{}("%c#local.set%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLocal'Stop'tee{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.tee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,22,524,74)"), left{}(), format{}("%c#local.tee%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLoop{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aLoop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,22,488,82)"), left{}(), format{}("%c#loop%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaMemoryDefn{}(SortLimits{}, SortOptionalId{}) : SortMemoryDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aMemoryDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,27,916,101)"), left{}(), format{}("%c#memory%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaMemoryDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aMemoryDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,27,1247,112)"), left{}(), format{}("%c#memoryDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaModuleDecl{}(SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortModuleMetadata{}) : SortModuleDecl{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101010101010101"), klabel{}("aModuleDecl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1375,27,1375,239)"), left{}(), format{}("%c#module%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c)%r"), injective{}()] - symbol LblaNearest{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNearest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,57)"), left{}(), format{}("%cnearest%r"), injective{}()] - symbol LblaNeg{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNeg"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,22,19,57)"), left{}(), format{}("%cneg%r"), injective{}()] - symbol LblaNop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,27,86,80)"), left{}(), format{}("%cnop%r"), injective{}()] - symbol LblaPopcnt{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aPopcnt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,22,15,55)"), left{}(), format{}("%cpopcnt%r"), injective{}()] - symbol LblaPromote'Unds'f32{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aPromote_f32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,68)"), left{}(), format{}("%cpromote_f32%r"), injective{}()] - symbol LblaReturn{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aReturn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,27,88,83)"), left{}(), format{}("%creturn%r"), injective{}()] - symbol LblaSelect{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSelect"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,27,85,83)"), left{}(), format{}("%cselect%r"), injective{}()] - symbol LblaSize{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSize"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,27,89,81)"), left{}(), format{}("%cmemory.size%r"), injective{}()] - symbol LblaSqrt{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSqrt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,22,20,57)"), left{}(), format{}("%csqrt%r"), injective{}()] - symbol LblaStartDefn{}(SortInt{}) : SortStartDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aStartDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,26,1206,65)"), left{}(), format{}("%c#start%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaStore{}(SortValType{}, SortStoreOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,22,952,84)"), left{}(), format{}("%c#store%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaTableDefn{}(SortLimits{}, SortOptionalId{}) : SortTableDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTableDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,26,873,99)"), left{}(), format{}("%c#table%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaTableDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTableDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,27,1246,112)"), left{}(), format{}("%c#tableDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaTestOp{}(SortIValType{}, SortTestOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aTestOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,27,80,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaTrunc{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,22,23,57)"), left{}(), format{}("%ctrunc%r"), injective{}()] - symbol LblaTrunc'Unds'f32'Unds's{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,68)"), left{}(), format{}("%ctrunc_f32_s%r"), injective{}()] - symbol LblaTrunc'Unds'f32'Unds'u{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,68)"), left{}(), format{}("%ctrunc_f32_u%r"), injective{}()] - symbol LblaTrunc'Unds'f64'Unds's{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f64_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,68)"), left{}(), format{}("%ctrunc_f64_s%r"), injective{}()] - symbol LblaTrunc'Unds'f64'Unds'u{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f64_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,68)"), left{}(), format{}("%ctrunc_f64_u%r"), injective{}()] - symbol LblaTypeDefn{}(SortFuncType{}, SortOptionalId{}) : SortTypeDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTypeDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,25,660,95)"), left{}(), format{}("%c#type%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaUnreachable{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aUnreachable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,27,87,88)"), left{}(), format{}("%cunreachable%r"), injective{}()] - symbol LblaVecType{}(SortValTypes{}) : SortVecType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("101"), klabel{}("aVecType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(245,25,245,67)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] - symbol LblaWrap'Unds'i64{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aWrap_i64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,62)"), left{}(), format{}("%cwrap_i64%r"), injective{}()] + symbol LblaAbs{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aAbs"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,57)"), left{}(), format{}("%cabs%r"), injective{}()] + symbol LblaBlock{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBlock"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,22,440,84)"), left{}(), format{}("%c#block%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaBr{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(452,22,452,53)"), left{}(), format{}("%c#br%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaBr'Unds'if{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr_if"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,22,460,66)"), left{}(), format{}("%c#br_if%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaBr'Unds'table{}(SortInts{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr_table"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,22,469,73)"), left{}(), format{}("%c#br_table%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCall{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCall"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,22,777,55)"), left{}(), format{}("%c#call%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCall'Unds'indirect{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCall_indirect"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(789,22,789,82)"), left{}(), format{}("%c#call_indirect%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCeil{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aCeil"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,22,22,57)"), left{}(), format{}("%cceil%r"), injective{}()] + symbol LblaClz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aClz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,22,13,52)"), left{}(), format{}("%cclz%r"), injective{}()] + symbol LblaConvert'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,72)"), left{}(), format{}("%cconvert_i32_s%r"), injective{}()] + symbol LblaConvert'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,72)"), left{}(), format{}("%cconvert_i32_u%r"), injective{}()] + symbol LblaConvert'Unds'i64'Unds's{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i64_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,72)"), left{}(), format{}("%cconvert_i64_s%r"), injective{}()] + symbol LblaConvert'Unds'i64'Unds'u{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i64_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,72)"), left{}(), format{}("%cconvert_i64_u%r"), injective{}()] + symbol LblaCtz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aCtz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,52)"), left{}(), format{}("%cctz%r"), injective{}()] + symbol LblaCvtOp{}(SortValType{}, SortCvtOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCvtOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,27,83,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaDataDefn{}(SortInt{}, SortInstrs{}, SortBytes{}) : SortDataDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aDataDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1174,25,1174,101)"), left{}(), format{}("%c#data%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaDemote'Unds'f64{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aDemote_f64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,66)"), left{}(), format{}("%cdemote_f64%r"), injective{}()] + symbol LblaDrop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aDrop"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,27,84,81)"), left{}(), format{}("%cdrop%r"), injective{}()] + symbol LblaElemDefn{}(SortInt{}, SortInstrs{}, SortInts{}) : SortElemDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aElemDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,25,1143,107)"), left{}(), format{}("%c#elem%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaEqz{}() : SortTestOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aEqz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,23,53,50)"), left{}(), format{}("%ceqz%r"), injective{}()] + symbol LblaExportDefn{}(SortWasmString{}, SortInt{}) : SortExportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aExportDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1223,27,1223,95)"), left{}(), format{}("%c#export%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaExtend'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aExtend_i32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,70)"), left{}(), format{}("%cextend_i32_s%r"), injective{}()] + symbol LblaExtend'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aExtend_i32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,70)"), left{}(), format{}("%cextend_i32_u%r"), injective{}()] + symbol LblaFBinOp{}(SortFValType{}, SortFBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFBinOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,27,79,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFConst{}(SortFValType{}, SortNumber{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFConst"), priorities{}(), right{}(), terminals{}("0110"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,27,75,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] + symbol LblaFRelOp{}(SortFValType{}, SortFRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFRelOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,27,82,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFUnOp{}(SortFValType{}, SortFUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFUnOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,27,77,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFloor{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aFloor"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,57)"), left{}(), format{}("%cfloor%r"), injective{}()] + symbol LblaFuncDefn{}(SortInt{}, SortVecType{}, SortInstrs{}, SortFuncMetadata{}) : SortFuncDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFuncDefn"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(689,25,689,123)"), left{}(), format{}("%c#func%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol LblaFuncDesc{}(SortOptionalId{}, SortInt{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFuncDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,27,1244,112)"), left{}(), format{}("%c#funcDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaFuncType{}(SortVecType{}, SortVecType{}) : SortFuncType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("aFuncType"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,25,248,72)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] + symbol LblaGlobal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobal.get"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(582,22,582,76)"), left{}(), format{}("%c#global.get%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaGlobal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobal.set"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(583,22,583,76)"), left{}(), format{}("%c#global.set%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaGlobalDefn{}(SortGlobalType{}, SortInstrs{}, SortOptionalId{}) : SortGlobalDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(551,27,551,117)"), left{}(), format{}("%c#global%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaGlobalDesc{}(SortOptionalId{}, SortGlobalType{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,27,1245,112)"), left{}(), format{}("%c#globalDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaGlobalType{}(SortMut{}, SortValType{}) : SortGlobalType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalType"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(548,27,548,67)"), left{}(), format{}("%1 %2"), injective{}()] + symbol LblaGrow{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGrow"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,27,90,81)"), left{}(), format{}("%cmemory.grow%r"), injective{}()] + symbol LblaIBinOp{}(SortIValType{}, SortIBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIBinOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,27,78,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIConst{}(SortIValType{}, SortWasmInt{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIConst"), priorities{}(), right{}(), terminals{}("0110"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,27,74,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] + symbol LblaIRelOp{}(SortIValType{}, SortIRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIRelOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,27,81,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIUnOp{}(SortIValType{}, SortIUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIUnOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,27,76,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIf{}(SortVecType{}, SortInstrs{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIf"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(478,22,478,112)"), left{}(), format{}("%c#if%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol LblaImportDefn{}(SortWasmString{}, SortWasmString{}, SortImportDesc{}) : SortImportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aImportDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,27,1243,112)"), left{}(), format{}("%c#import%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaLoad{}(SortValType{}, SortLoadOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLoad"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,22,1001,81)"), left{}(), format{}("%c#load%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaLocal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.get"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,22,522,74)"), left{}(), format{}("%c#local.get%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLocal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.set"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,22,523,74)"), left{}(), format{}("%c#local.set%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLocal'Stop'tee{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.tee"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,22,524,74)"), left{}(), format{}("%c#local.tee%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLoop{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLoop"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,22,488,82)"), left{}(), format{}("%c#loop%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaMemoryDefn{}(SortLimits{}, SortOptionalId{}) : SortMemoryDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aMemoryDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,27,916,101)"), left{}(), format{}("%c#memory%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaMemoryDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aMemoryDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,27,1247,112)"), left{}(), format{}("%c#memoryDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaModuleDecl{}(SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortModuleMetadata{}) : SortModuleDecl{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aModuleDecl"), priorities{}(), right{}(), terminals{}("110101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1375,27,1375,239)"), left{}(), format{}("%c#module%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c)%r"), injective{}()] + symbol LblaNearest{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aNearest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,57)"), left{}(), format{}("%cnearest%r"), injective{}()] + symbol LblaNeg{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aNeg"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,22,19,57)"), left{}(), format{}("%cneg%r"), injective{}()] + symbol LblaNop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aNop"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,27,86,80)"), left{}(), format{}("%cnop%r"), injective{}()] + symbol LblaPopcnt{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aPopcnt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,22,15,55)"), left{}(), format{}("%cpopcnt%r"), injective{}()] + symbol LblaPromote'Unds'f32{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aPromote_f32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,68)"), left{}(), format{}("%cpromote_f32%r"), injective{}()] + symbol LblaReturn{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aReturn"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,27,88,83)"), left{}(), format{}("%creturn%r"), injective{}()] + symbol LblaSelect{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aSelect"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,27,85,83)"), left{}(), format{}("%cselect%r"), injective{}()] + symbol LblaSize{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aSize"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,27,89,81)"), left{}(), format{}("%cmemory.size%r"), injective{}()] + symbol LblaSqrt{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aSqrt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,22,20,57)"), left{}(), format{}("%csqrt%r"), injective{}()] + symbol LblaStartDefn{}(SortInt{}) : SortStartDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aStartDefn"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,26,1206,65)"), left{}(), format{}("%c#start%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaStore{}(SortValType{}, SortStoreOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aStore"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,22,952,84)"), left{}(), format{}("%c#store%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaTableDefn{}(SortLimits{}, SortOptionalId{}) : SortTableDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTableDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,26,873,99)"), left{}(), format{}("%c#table%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaTableDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTableDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,27,1246,112)"), left{}(), format{}("%c#tableDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaTestOp{}(SortIValType{}, SortTestOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTestOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,27,80,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaTrunc{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,22,23,57)"), left{}(), format{}("%ctrunc%r"), injective{}()] + symbol LblaTrunc'Unds'f32'Unds's{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,68)"), left{}(), format{}("%ctrunc_f32_s%r"), injective{}()] + symbol LblaTrunc'Unds'f32'Unds'u{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,68)"), left{}(), format{}("%ctrunc_f32_u%r"), injective{}()] + symbol LblaTrunc'Unds'f64'Unds's{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f64_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,68)"), left{}(), format{}("%ctrunc_f64_s%r"), injective{}()] + symbol LblaTrunc'Unds'f64'Unds'u{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f64_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,68)"), left{}(), format{}("%ctrunc_f64_u%r"), injective{}()] + symbol LblaTypeDefn{}(SortFuncType{}, SortOptionalId{}) : SortTypeDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTypeDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,25,660,95)"), left{}(), format{}("%c#type%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaUnreachable{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aUnreachable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,27,87,88)"), left{}(), format{}("%cunreachable%r"), injective{}()] + symbol LblaVecType{}(SortValTypes{}) : SortVecType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("aVecType"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(245,25,245,67)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] + symbol LblaWrap'Unds'i64{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aWrap_i64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,62)"), left{}(), format{}("%cwrap_i64%r"), injective{}()] hooked-symbol LblabsFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fp.abs"), right{}(), terminals{}("1101"), klabel{}("absFloat"), hook{}("FLOAT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1289,20,1289,105)"), left{}(), format{}("%cabsFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), right{}(), terminals{}("1101"), klabel{}("absInt"), hook{}("INT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(972,18,972,123)"), left{}(), format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblacosFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("acosFloat"), hook{}("FLOAT.acos"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1300,20,1300,76)"), left{}(), format{}("%cacosFloat%r %c(%r %1 %c)%r"), function{}()] @@ -795,7 +795,7 @@ module KWASM-LEMMAS hooked-symbol LblasinFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("asinFloat"), hook{}("FLOAT.asin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1299,20,1299,76)"), left{}(), format{}("%casinFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblatan2Float'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("atan2Float"), hook{}("FLOAT.atan2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1302,20,1302,77)"), left{}(), format{}("%catan2Float%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblatanFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("atanFloat"), hook{}("FLOAT.atan"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1301,20,1301,88)"), left{}(), format{}("%catanFloat%r %c(%r %1 %c)%r"), function{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("bigEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1727,25,1727,61)"), left{}(), format{}("%cBE%r"), injective{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("bigEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1727,25,1727,61)"), left{}(), format{}("%cBE%r"), injective{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("bitRangeInt"), hook{}("INT.bitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(997,18,997,102)"), left{}(), format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] symbol Lblblock'UndsUndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,27,121,78)"), left{}(), format{}("%cblock%r %1 %2 %3 %cend%r %4"), injective{}()] symbol Lblbr'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,36)"), left{}(), format{}("%cbr%r %1"), injective{}()] @@ -821,28 +821,28 @@ module KWASM-LEMMAS hooked-symbol LblexpFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("expFloat"), hook{}("FLOAT.exp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,20,1294,87)"), left{}(), format{}("%cexpFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblexponentBitsFloat'LParUndsRParUnds'FLOAT'Unds'Int'Unds'Float{}(SortFloat{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("exponentBitsFloat"), hook{}("FLOAT.exponentBits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1200,18,1200,90)"), left{}(), format{}("%cexponentBitsFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblexponentFloat'LParUndsRParUnds'FLOAT'Unds'Int'Unds'Float{}(SortFloat{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("exponentFloat"), hook{}("FLOAT.exponent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1208,18,1208,82)"), left{}(), format{}("%cexponentFloat%r %c(%r %1 %c)%r"), function{}()] - symbol Lblf32{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("f32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,51)"), left{}(), format{}("%cf32%r"), injective{}()] - symbol Lblf64{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("f64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,55,87,81)"), left{}(), format{}("%cf64%r"), injective{}()] + symbol Lblf32{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("f32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,51)"), left{}(), format{}("%cf32%r"), injective{}()] + symbol Lblf64{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("f64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,55,87,81)"), left{}(), format{}("%cf64%r"), injective{}()] hooked-symbol LblfillList'LParUndsCommUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("fillList"), hook{}("LIST.fill"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(715,19,715,99)"), left{}(), format{}("%cfillList%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] hooked-symbol LblfindChar'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findChar"), hook{}("STRING.findChar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1460,18,1460,115)"), left{}(), format{}("%cfindChar%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblfindString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findString"), hook{}("STRING.find"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1449,18,1449,110)"), left{}(), format{}("%cfindString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblfloatAdd{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatAdd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,23,44,54)"), left{}(), format{}("%cadd%r"), injective{}()] - symbol LblfloatCopysign{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatCopysign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,23,50,64)"), left{}(), format{}("%ccopysign%r"), injective{}()] - symbol LblfloatDiv{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatDiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,23,47,54)"), left{}(), format{}("%cdiv%r"), injective{}()] - symbol LblfloatEq{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatEq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,23,72,52)"), left{}(), format{}("%ceq%r"), injective{}()] - symbol LblfloatGe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatGe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,23,71,52)"), left{}(), format{}("%cge%r"), injective{}()] - symbol LblfloatGt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatGt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,23,69,52)"), left{}(), format{}("%cgt%r"), injective{}()] - symbol LblfloatLe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatLe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,23,70,52)"), left{}(), format{}("%cle%r"), injective{}()] - symbol LblfloatLt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatLt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,23,68,52)"), left{}(), format{}("%clt%r"), injective{}()] - symbol LblfloatMax{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,54)"), left{}(), format{}("%cmax%r"), injective{}()] - symbol LblfloatMin{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,23,48,54)"), left{}(), format{}("%cmin%r"), injective{}()] - symbol LblfloatMul{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,23,46,54)"), left{}(), format{}("%cmul%r"), injective{}()] - symbol LblfloatNe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatNe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,23,73,52)"), left{}(), format{}("%cne%r"), injective{}()] - symbol LblfloatSub{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatSub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,23,45,54)"), left{}(), format{}("%csub%r"), injective{}()] + symbol LblfloatAdd{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatAdd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,23,44,54)"), left{}(), format{}("%cadd%r"), injective{}()] + symbol LblfloatCopysign{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatCopysign"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,23,50,64)"), left{}(), format{}("%ccopysign%r"), injective{}()] + symbol LblfloatDiv{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatDiv"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,23,47,54)"), left{}(), format{}("%cdiv%r"), injective{}()] + symbol LblfloatEq{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatEq"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,23,72,52)"), left{}(), format{}("%ceq%r"), injective{}()] + symbol LblfloatGe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatGe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,23,71,52)"), left{}(), format{}("%cge%r"), injective{}()] + symbol LblfloatGt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatGt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,23,69,52)"), left{}(), format{}("%cgt%r"), injective{}()] + symbol LblfloatLe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatLe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,23,70,52)"), left{}(), format{}("%cle%r"), injective{}()] + symbol LblfloatLt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatLt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,23,68,52)"), left{}(), format{}("%clt%r"), injective{}()] + symbol LblfloatMax{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMax"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,54)"), left{}(), format{}("%cmax%r"), injective{}()] + symbol LblfloatMin{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMin"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,23,48,54)"), left{}(), format{}("%cmin%r"), injective{}()] + symbol LblfloatMul{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMul"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,23,46,54)"), left{}(), format{}("%cmul%r"), injective{}()] + symbol LblfloatNe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatNe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,23,73,52)"), left{}(), format{}("%cne%r"), injective{}()] + symbol LblfloatSub{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatSub"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,23,45,54)"), left{}(), format{}("%csub%r"), injective{}()] hooked-symbol LblfloorFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("floorFloat"), hook{}("FLOAT.floor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1291,20,1291,89)"), left{}(), format{}("%cfloorFloat%r %c(%r %1 %c)%r"), function{}()] symbol Lblframe'UndsUndsUndsUndsUnds'WASM'Unds'Frame'Unds'Int'Unds'ValTypes'Unds'ValStack'Unds'Map{}(SortInt{}, SortValTypes{}, SortValStack{}, SortMap{}) : SortFrame{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(733,22,733,54)"), left{}(), format{}("%cframe%r %1 %2 %3 %4"), injective{}()] symbol LblfreshInt'LParUndsRParUnds'INT'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), freshGenerator{}(), klabel{}("freshInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1137,18,1137,81)"), left{}(), format{}("%cfreshInt%r %c(%r %1 %c)%r"), private{}(), function{}()] - symbol LblfuncMeta{}(SortOptionalId{}, SortMap{}) : SortFuncMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("funcMeta"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(722,29,722,91)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblfuncMeta{}(SortOptionalId{}, SortMap{}) : SortFuncMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("funcMeta"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(722,29,722,91)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] symbol Lblfunc'Unds'WASM-DATA-COMMON-SYNTAX'Unds'AllocatedKind{}() : SortAllocatedKind{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,30,134,35)"), left{}(), format{}("%cfunc%r"), injective{}()] symbol Lblfuncref'Unds'WASM-TEXT-COMMON-SYNTAX'Unds'TableElemType{}() : SortTableElemType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,30,231,38)"), left{}(), format{}("%cfuncref%r"), injective{}()] symbol LblgatherTypes'LParUndsCommUndsRParUnds'WASM'Unds'VecType'Unds'TypeKeyWord'Unds'TypeDecls{}(SortTypeKeyWord{}, SortTypeDecls{}) : SortVecType{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("gatherTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(623,25,623,85)"), left{}(), format{}("%cgatherTypes%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -851,8 +851,8 @@ module KWASM-LEMMAS symbol Lblglobal'Stop'set'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,27,97,44)"), left{}(), format{}("%cglobal.set%r %1"), injective{}()] symbol Lblglobal'Unds'WASM-DATA-COMMON-SYNTAX'Unds'AllocatedKind{}() : SortAllocatedKind{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,60,134,67)"), left{}(), format{}("%cglobal%r"), injective{}()] symbol Lblgrow'UndsUnds'WASM'Unds'Instr'Unds'Int{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1075,22,1075,31)"), left{}(), format{}("%cgrow%r %1"), injective{}()] - symbol Lbli32{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("i32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,51)"), left{}(), format{}("%ci32%r"), injective{}()] - symbol Lbli64{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("i64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,55,86,81)"), left{}(), format{}("%ci64%r"), injective{}()] + symbol Lbli32{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("i32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,51)"), left{}(), format{}("%ci32%r"), injective{}()] + symbol Lbli64{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("i64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,55,86,81)"), left{}(), format{}("%ci64%r"), injective{}()] symbol Lblif'UndsUndsUnds'else'UndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,27,123,100)"), left{}(), format{}("%cif%r %1 %2 %3 %celse%r %4 %5 %cend%r %6"), injective{}()] symbol Lblif'UndsUndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,27,124,100)"), left{}(), format{}("%cif%r %1 %2 %3 %cend%r %4"), injective{}()] symbol LblinitCurFrameCell{}() : SortCurFrameCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitCurFrameCell%r"), function{}()] @@ -921,31 +921,31 @@ module KWASM-LEMMAS symbol LblinitWasmCell{}() : SortWasmCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitWasmCell%r"), function{}()] symbol Lblinit'Unds'local'UndsUndsUnds'WASM'Unds'Instr'Unds'Int'Unds'Val{}(SortInt{}, SortVal{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("100"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(502,23,502,43)"), left{}(), format{}("%cinit_local%r %1 %2"), injective{}()] symbol Lblinit'Unds'locals'UndsUnds'WASM'Unds'Instr'Unds'ValStack{}(SortValStack{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(503,23,503,48)"), left{}(), format{}("%cinit_locals%r %1"), injective{}()] - symbol LblintAdd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intAdd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,23,27,52)"), left{}(), format{}("%cadd%r"), injective{}()] - symbol LblintAnd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intAnd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,52)"), left{}(), format{}("%cand%r"), injective{}()] - symbol LblintDiv'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intDiv_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(32,23,32,56)"), left{}(), format{}("%cdiv_s%r"), injective{}()] - symbol LblintDiv'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intDiv_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,23,30,56)"), left{}(), format{}("%cdiv_u%r"), injective{}()] - symbol LblintEq{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intEq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,23,56,50)"), left{}(), format{}("%ceq%r"), injective{}()] - symbol LblintGe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGe_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,23,65,54)"), left{}(), format{}("%cge_s%r"), injective{}()] - symbol LblintGe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGe_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,23,63,54)"), left{}(), format{}("%cge_u%r"), injective{}()] - symbol LblintGt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGt_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,23,61,54)"), left{}(), format{}("%cgt_s%r"), injective{}()] - symbol LblintGt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGt_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,23,59,54)"), left{}(), format{}("%cgt_u%r"), injective{}()] - symbol LblintLe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLe_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,23,64,54)"), left{}(), format{}("%cle_s%r"), injective{}()] - symbol LblintLe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLe_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,23,62,54)"), left{}(), format{}("%cle_u%r"), injective{}()] - symbol LblintLt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLt_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,23,60,54)"), left{}(), format{}("%clt_s%r"), injective{}()] - symbol LblintLt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLt_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,23,58,54)"), left{}(), format{}("%clt_u%r"), injective{}()] - symbol LblintMul{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intMul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(29,23,29,52)"), left{}(), format{}("%cmul%r"), injective{}()] - symbol LblintNe{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intNe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,23,57,50)"), left{}(), format{}("%cne%r"), injective{}()] - symbol LblintOr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intOr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,50)"), left{}(), format{}("%cor%r"), injective{}()] - symbol LblintRem'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRem_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,56)"), left{}(), format{}("%crem_s%r"), injective{}()] - symbol LblintRem'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRem_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,23,31,56)"), left{}(), format{}("%crem_u%r"), injective{}()] - symbol LblintRotl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRotl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,54)"), left{}(), format{}("%crotl%r"), injective{}()] - symbol LblintRotr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRotr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,23,41,54)"), left{}(), format{}("%crotr%r"), injective{}()] - symbol LblintShl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,52)"), left{}(), format{}("%cshl%r"), injective{}()] - symbol LblintShr'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShr_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,56)"), left{}(), format{}("%cshr_s%r"), injective{}()] - symbol LblintShr'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShr_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,23,38,56)"), left{}(), format{}("%cshr_u%r"), injective{}()] - symbol LblintSub{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intSub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,23,28,52)"), left{}(), format{}("%csub%r"), injective{}()] - symbol LblintXor{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intXor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,23,36,52)"), left{}(), format{}("%cxor%r"), injective{}()] + symbol LblintAdd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intAdd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,23,27,52)"), left{}(), format{}("%cadd%r"), injective{}()] + symbol LblintAnd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intAnd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,52)"), left{}(), format{}("%cand%r"), injective{}()] + symbol LblintDiv'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intDiv_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(32,23,32,56)"), left{}(), format{}("%cdiv_s%r"), injective{}()] + symbol LblintDiv'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intDiv_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,23,30,56)"), left{}(), format{}("%cdiv_u%r"), injective{}()] + symbol LblintEq{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intEq"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,23,56,50)"), left{}(), format{}("%ceq%r"), injective{}()] + symbol LblintGe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGe_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,23,65,54)"), left{}(), format{}("%cge_s%r"), injective{}()] + symbol LblintGe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGe_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,23,63,54)"), left{}(), format{}("%cge_u%r"), injective{}()] + symbol LblintGt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGt_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,23,61,54)"), left{}(), format{}("%cgt_s%r"), injective{}()] + symbol LblintGt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGt_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,23,59,54)"), left{}(), format{}("%cgt_u%r"), injective{}()] + symbol LblintLe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLe_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,23,64,54)"), left{}(), format{}("%cle_s%r"), injective{}()] + symbol LblintLe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLe_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,23,62,54)"), left{}(), format{}("%cle_u%r"), injective{}()] + symbol LblintLt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLt_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,23,60,54)"), left{}(), format{}("%clt_s%r"), injective{}()] + symbol LblintLt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLt_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,23,58,54)"), left{}(), format{}("%clt_u%r"), injective{}()] + symbol LblintMul{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intMul"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(29,23,29,52)"), left{}(), format{}("%cmul%r"), injective{}()] + symbol LblintNe{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intNe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,23,57,50)"), left{}(), format{}("%cne%r"), injective{}()] + symbol LblintOr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intOr"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,50)"), left{}(), format{}("%cor%r"), injective{}()] + symbol LblintRem'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRem_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,56)"), left{}(), format{}("%crem_s%r"), injective{}()] + symbol LblintRem'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRem_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,23,31,56)"), left{}(), format{}("%crem_u%r"), injective{}()] + symbol LblintRotl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRotl"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,54)"), left{}(), format{}("%crotl%r"), injective{}()] + symbol LblintRotr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRotr"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,23,41,54)"), left{}(), format{}("%crotr%r"), injective{}()] + symbol LblintShl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShl"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,52)"), left{}(), format{}("%cshl%r"), injective{}()] + symbol LblintShr'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShr_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,56)"), left{}(), format{}("%cshr_s%r"), injective{}()] + symbol LblintShr'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShr_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,23,38,56)"), left{}(), format{}("%cshr_u%r"), injective{}()] + symbol LblintSub{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intSub"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,23,28,52)"), left{}(), format{}("%csub%r"), injective{}()] + symbol LblintXor{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intXor"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,23,36,52)"), left{}(), format{}("%cxor%r"), injective{}()] hooked-symbol LblintersectSet'LParUndsCommUndsRParUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("intersectSet"), hook{}("SET.intersection"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(569,18,569,88)"), left{}(), format{}("%cintersectSet%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol Lblis'Hash'Layout{}(SortK{}) : SortBool{} [functional{}(), predicate{}("#Layout"), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cis#Layout%r %c(%r %1 %c)%r"), function{}()] symbol LblisAlignArg{}(SortK{}) : SortBool{} [functional{}(), predicate{}("AlignArg"), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cisAlignArg%r %c(%r %1 %c)%r"), function{}()] @@ -1210,19 +1210,19 @@ module KWASM-LEMMAS hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), klabel{}("lengthBytes"), hook{}("BYTES.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1853,18,1853,99)"), left{}(), format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthString"), hook{}("STRING.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1414,18,1414,84)"), left{}(), format{}("%clengthString%r %c(%r %1 %c)%r"), function{}()] symbol LbllengthValTypes'LParUndsRParUnds'WASM-DATA'Unds'Int'Unds'ValTypes{}(SortValTypes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthValTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,20,251,69)"), left{}(), format{}("%clengthValTypes%r %c(%r %1 %c)%r"), function{}()] - symbol LbllimitsMin{}(SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("limitsMin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,23,235,70)"), left{}(), format{}("%c#limitsMin%r %c(%r %1 %c)%r"), injective{}()] - symbol LbllimitsMinMax{}(SortInt{}, SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("limitsMinMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,23,236,70)"), left{}(), format{}("%c#limits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LbllistInt{}(SortInt{}, SortInts{}) : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllistStmt{}(SortEmptyStmt{}, SortEmptyStmts{}) : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllistValTypes{}(SortValType{}, SortValTypes{}) : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listValTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("littleEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1726,25,1726,64)"), left{}(), format{}("%cLE%r"), injective{}()] - symbol LblloadOpLoad{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,24,108,62)"), left{}(), format{}("%cload%r"), injective{}()] - symbol LblloadOpLoad16'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad16_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,24,113,66)"), left{}(), format{}("%cload16_s%r"), injective{}()] - symbol LblloadOpLoad16'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad16_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,24,110,66)"), left{}(), format{}("%cload16_u%r"), injective{}()] - symbol LblloadOpLoad32'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,24,114,66)"), left{}(), format{}("%cload32_s%r"), injective{}()] - symbol LblloadOpLoad32'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,24,111,66)"), left{}(), format{}("%cload32_u%r"), injective{}()] - symbol LblloadOpLoad8'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad8_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,24,112,65)"), left{}(), format{}("%cload8_s%r"), injective{}()] - symbol LblloadOpLoad8'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad8_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,24,109,65)"), left{}(), format{}("%cload8_u%r"), injective{}()] + symbol LbllimitsMin{}(SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("limitsMin"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,23,235,70)"), left{}(), format{}("%c#limitsMin%r %c(%r %1 %c)%r"), injective{}()] + symbol LbllimitsMinMax{}(SortInt{}, SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("limitsMinMax"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,23,236,70)"), left{}(), format{}("%c#limits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LbllistInt{}(SortInt{}, SortInts{}) : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("listInt"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllistStmt{}(SortEmptyStmt{}, SortEmptyStmts{}) : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("listStmt"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllistValTypes{}(SortValType{}, SortValTypes{}) : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("listValTypes"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("littleEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1726,25,1726,64)"), left{}(), format{}("%cLE%r"), injective{}()] + symbol LblloadOpLoad{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,24,108,62)"), left{}(), format{}("%cload%r"), injective{}()] + symbol LblloadOpLoad16'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad16_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,24,113,66)"), left{}(), format{}("%cload16_s%r"), injective{}()] + symbol LblloadOpLoad16'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad16_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,24,110,66)"), left{}(), format{}("%cload16_u%r"), injective{}()] + symbol LblloadOpLoad32'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,24,114,66)"), left{}(), format{}("%cload32_s%r"), injective{}()] + symbol LblloadOpLoad32'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,24,111,66)"), left{}(), format{}("%cload32_u%r"), injective{}()] + symbol LblloadOpLoad8'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad8_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,24,112,65)"), left{}(), format{}("%cload8_s%r"), injective{}()] + symbol LblloadOpLoad8'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad8_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,24,109,65)"), left{}(), format{}("%cload8_u%r"), injective{}()] symbol Lblload'LBraUndsUndsUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'IValType'Unds'Int'Unds'Int'Unds'Signedness'Unds'Bytes{}(SortIValType{}, SortInt{}, SortInt{}, SortSignedness{}, SortBytes{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("11000001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,22,1003,68)"), left{}(), format{}("%cload%r %c{%r %1 %2 %3 %4 %5 %c}%r"), injective{}()] symbol Lblload'LBraUndsUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'IValType'Unds'Int'Unds'Int'Unds'Signedness{}(SortIValType{}, SortInt{}, SortInt{}, SortSignedness{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("1100001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1002,22,1002,62)"), left{}(), format{}("%cload%r %c{%r %1 %2 %3 %4 %c}%r"), injective{}()] symbol Lbllocal'Stop'get'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,27,98,43)"), left{}(), format{}("%clocal.get%r %1"), injective{}()] @@ -1242,9 +1242,9 @@ module KWASM-LEMMAS hooked-symbol LblminFloat'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fp.min"), right{}(), terminals{}("110101"), klabel{}("minFloat"), hook{}("FLOAT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,20,1304,93)"), left{}(), format{}("%cminFloat%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblminInt'LParUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 #2) #1 #2)"), right{}(), terminals{}("110101"), hook{}("INT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(963,18,963,118)"), left{}(), format{}("%cminInt%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblminValueFloat'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("minValueFloat"), hook{}("FLOAT.minValue"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,20,1307,105)"), left{}(), format{}("%cminValueFloat%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - symbol LblmoduleMeta{}(SortOptionalId{}, SortMap{}, SortOptionalString{}) : SortModuleMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("moduleMeta"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1382,31,1382,121)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblmutConst{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("mutConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,53)"), left{}(), format{}("%cconst%r"), injective{}()] - symbol LblmutVar{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("mutVar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,51)"), left{}(), format{}("%cvar%r"), injective{}()] + symbol LblmoduleMeta{}(SortOptionalId{}, SortMap{}, SortOptionalString{}) : SortModuleMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("moduleMeta"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1382,31,1382,121)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblmutConst{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("mutConst"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,53)"), left{}(), format{}("%cconst%r"), injective{}()] + symbol LblmutVar{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("mutVar"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,51)"), left{}(), format{}("%cvar%r"), injective{}()] hooked-symbol LblnewUUID'Unds'STRING-COMMON'Unds'String{}() : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), impure{}(), hook{}("STRING.uuid"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1566,21,1566,67)"), left{}(), format{}("%cnewUUID%r"), function{}()] symbol LblnoCurFrameCell{}() : SortCurFrameCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("CurFrameCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoCurFrameCell%r"), injective{}()] symbol LblnoCurModIdxCell{}() : SortCurModIdxCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("CurModIdxCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoCurModIdxCell%r"), injective{}()] @@ -1304,7 +1304,7 @@ module KWASM-LEMMAS symbol LblnoTypesCell{}() : SortTypesCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("TypesCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoTypesCell%r"), injective{}()] symbol LblnoValstackCell{}() : SortValstackCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("ValstackCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoValstackCell%r"), injective{}()] symbol LblnoWasmCell{}() : SortWasmCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("WasmCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoWasmCell%r"), injective{}()] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), klabel{}("notBool_"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,176)"), left{}(), format{}("%cnotBool%r %1"), function{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("notBool_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,176)"), left{}(), format{}("%cnotBool%r %1"), function{}()] symbol Lbloffset'EqlsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'OffsetArg'Unds'WasmInt{}(SortWasmInt{}) : SortOffsetArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,27,110,43)"), left{}(), format{}("%coffset=%r %1"), injective{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("ordChar"), hook{}("STRING.ord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1424,18,1424,69)"), left{}(), format{}("%cordChar%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblpadLeftBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("padLeftBytes"), hook{}("BYTES.padLeft"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1836,20,1836,95)"), left{}(), format{}("%cpadLeftBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] @@ -1640,17 +1640,17 @@ module KWASM-LEMMAS symbol LblsequenceStmts'LParUndsRParUnds'WASM'Unds'K'Unds'Stmts{}(SortStmts{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sequenceStmts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(274,18,274,53)"), left{}(), format{}("%csequenceStmts%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("signExtendBitRangeInt"), hook{}("INT.signExtendBitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(998,18,998,112)"), left{}(), format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblsignFloat'LParUndsRParUnds'FLOAT'Unds'Bool'Unds'Float{}(SortFloat{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("signFloat"), hook{}("FLOAT.sign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1217,19,1217,80)"), left{}(), format{}("%csignFloat%r %c(%r %1 %c)%r"), function{}()] - symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("signedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1736,25,1736,62)"), left{}(), format{}("%cSigned%r"), injective{}()] + symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("signedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1736,25,1736,62)"), left{}(), format{}("%cSigned%r"), injective{}()] hooked-symbol LblsinFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sinFloat"), hook{}("FLOAT.sin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1296,20,1296,87)"), left{}(), format{}("%csinFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), klabel{}("sizeList"), hook{}("LIST.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(742,18,742,121)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sizeMap"), hook{}("MAP.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(384,18,384,103)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'SET'Unds'Int'Unds'Set{}(SortSet{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("size"), hook{}("SET.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(604,18,604,80)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] symbol LblsqrtFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sqrtFloat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1305,20,1305,58)"), left{}(), format{}("%csqrtFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("srandInt"), hook{}("INT.srand"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1032,16,1032,64)"), left{}(), format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}()] - symbol LblstoreOpStore{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,66)"), left{}(), format{}("%cstore%r"), injective{}()] - symbol LblstoreOpStore16{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore16"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,24,106,66)"), left{}(), format{}("%cstore16%r"), injective{}()] - symbol LblstoreOpStore32{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,24,107,66)"), left{}(), format{}("%cstore32%r"), injective{}()] - symbol LblstoreOpStore8{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore8"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,24,105,66)"), left{}(), format{}("%cstore8%r"), injective{}()] + symbol LblstoreOpStore{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,66)"), left{}(), format{}("%cstore%r"), injective{}()] + symbol LblstoreOpStore16{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore16"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,24,106,66)"), left{}(), format{}("%cstore16%r"), injective{}()] + symbol LblstoreOpStore32{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,24,107,66)"), left{}(), format{}("%cstore32%r"), injective{}()] + symbol LblstoreOpStore8{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore8"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,24,105,66)"), left{}(), format{}("%cstore8%r"), injective{}()] symbol Lblstore'LBraUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'Int'Unds'Int'Unds'Number{}(SortInt{}, SortInt{}, SortNumber{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("110001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,22,955,51)"), left{}(), format{}("%cstore%r %c{%r %1 %2 %3 %c}%r"), injective{}()] symbol LblstructureModule'LParUndsCommUndsRParUnds'WASM-TEXT'Unds'ModuleDecl'Unds'Defns'Unds'OptionalId{}(SortDefns{}, SortOptionalId{}) : SortModuleDecl{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("structureModule"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(656,28,656,76)"), left{}(), format{}("%cstructureModule%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblstructureModules'LParUndsRParUnds'WASM-TEXT'Unds'Stmts'Unds'Stmts{}(SortStmts{}) : SortStmts{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("structureModules"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(650,22,650,58)"), left{}(), format{}("%cstructureModules%r %c(%r %1 %c)%r"), function{}()] @@ -1670,11 +1670,11 @@ module KWASM-LEMMAS symbol LblunfoldDefns'LParUndsRParUnds'WASM-TEXT'Unds'Defns'Unds'Defns{}(SortDefns{}) : SortDefns{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldDefns"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(392,22,392,71)"), left{}(), format{}("%cunfoldDefns%r %c(%r %1 %c)%r"), function{}()] symbol LblunfoldInstrs'LParUndsRParUnds'WASM-TEXT'Unds'Instrs'Unds'Instrs{}(SortInstrs{}) : SortInstrs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldInstrs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,24,558,67)"), left{}(), format{}("%cunfoldInstrs%r %c(%r %1 %c)%r"), function{}()] symbol LblunfoldStmts'LParUndsRParUnds'WASM-TEXT'Unds'Stmts'Unds'Stmts{}(SortStmts{}) : SortStmts{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldStmts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(391,22,391,71)"), left{}(), format{}("%cunfoldStmts%r %c(%r %1 %c)%r"), function{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("unsignedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1737,25,1737,66)"), left{}(), format{}("%cUnsigned%r"), injective{}()] + symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("unsignedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1737,25,1737,66)"), left{}(), format{}("%cUnsigned%r"), injective{}()] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("updateList"), hook{}("LIST.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,19,706,96)"), left{}(), format{}("%cupdateList%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("updateMap"), hook{}("MAP.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(335,18,335,91)"), left{}(), format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("values"), hook{}("MAP.values"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(376,19,376,76)"), left{}(), format{}("%cvalues%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), klabel{}("~Int_"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,18,931,172)"), left{}(), format{}("%c~Int%r %1"), function{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("~Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,18,931,172)"), left{}(), format{}("%c~Int%r %1"), function{}()] // generated axioms axiom{R} \exists{R} (Val:SortNumber{}, \equals{SortNumber{}, R} (Val:SortNumber{}, inj{SortInt{}, SortNumber{}} (From:SortInt{}))) [subsort{SortInt{}, SortNumber{}}()] // subsort diff --git a/test/regression-wasm/test-wrc20-vdefinition.kore b/test/regression-wasm/test-wrc20-vdefinition.kore index f5e1eb6b09..2832210cc8 100644 --- a/test/regression-wasm/test-wrc20-vdefinition.kore +++ b/test/regression-wasm/test-wrc20-vdefinition.kore @@ -453,9 +453,9 @@ module WRC20-LEMMAS hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), hook{}("BYTES.empty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1716,20,1716,69)"), left{}(), format{}("%c.Bytes%r"), function{}()] hooked-symbol Lbl'Stop'FuncDefCellMap{}() : SortFuncDefCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.FuncDefCellMap%r"), function{}()] hooked-symbol Lbl'Stop'GlobalInstCellMap{}() : SortGlobalInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.GlobalInstCellMap%r"), function{}()] - symbol Lbl'Stop'Identifier{}() : SortOptionalId{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Identifier"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,27,35,58)"), left{}(), format{}("%c%r"), injective{}()] + symbol Lbl'Stop'Identifier{}() : SortOptionalId{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".Identifier"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,27,35,58)"), left{}(), format{}("%c%r"), injective{}()] symbol Lbl'Stop'Int'Unds'WASM-DATA'Unds'OptionalInt{}() : SortOptionalInt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(226,34,226,39)"), left{}(), format{}("%c.Int%r"), injective{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(659,19,659,146)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(659,19,659,146)"), left{}(), format{}("%c.List%r"), function{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Defns'Unds'Defn'Unds'Defns'QuotRBraUnds'Defns{}() : SortDefns{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,27,59,65)"), left{}(), format{}("%c.Defns%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Instrs'Unds'Instr'Unds'Instrs'QuotRBraUnds'Instrs{}() : SortInstrs{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,27,58,65)"), left{}(), format{}("%c.Instrs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts'QuotRBraUnds'Stmts{}() : SortStmts{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,27,60,65)"), left{}(), format{}("%c.Stmts%r"), injective{}()] @@ -463,15 +463,15 @@ module WRC20-LEMMAS symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-DATA-COMMON-SYNTAX'Unds'DataString'Unds'WasmString'Unds'DataString'QuotRBraUnds'DataString{}() : SortDataString{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listWasmString\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,27,54,71)"), left{}(), format{}("%c.DataString%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-DATA-COMMON-SYNTAX'Unds'ElemSegment'Unds'Index'Unds'ElemSegment'QuotRBraUnds'ElemSegment{}() : SortElemSegment{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listIndex\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,28,75,62)"), left{}(), format{}("%c.ElemSegment%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'LocalDecls'Unds'LocalDecl'Unds'LocalDecls'QuotRBraUnds'LocalDecls{}() : SortLocalDecls{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listLocalDecl\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(216,27,216,77)"), left{}(), format{}("%c.LocalDecls%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listInt'QuotRBraUnds'Ints{}() : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listInt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%c.Ints%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listStmt'QuotRBraUnds'EmptyStmts{}() : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listStmt\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%c.EmptyStmts%r"), injective{}()] - symbol Lbl'Stop'List'LBraQuot'listValTypes'QuotRBraUnds'ValTypes{}() : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"listValTypes\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%c.ValTypes%r"), injective{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,18,259,128)"), left{}(), format{}("%c.Map%r"), function{}()] + symbol Lbl'Stop'List'LBraQuot'listInt'QuotRBraUnds'Ints{}() : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".List{\"listInt\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%c.Ints%r"), injective{}()] + symbol Lbl'Stop'List'LBraQuot'listStmt'QuotRBraUnds'EmptyStmts{}() : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(".List{\"listStmt\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%c.EmptyStmts%r"), injective{}()] + symbol Lbl'Stop'List'LBraQuot'listValTypes'QuotRBraUnds'ValTypes{}() : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(".List{\"listValTypes\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%c.ValTypes%r"), injective{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(259,18,259,128)"), left{}(), format{}("%c.Map%r"), function{}()] hooked-symbol Lbl'Stop'MemInstCellMap{}() : SortMemInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.MemInstCellMap%r"), function{}()] hooked-symbol Lbl'Stop'ModuleInstCellMap{}() : SortModuleInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.ModuleInstCellMap%r"), function{}()] symbol Lbl'Stop'Mut'Unds'WASM-DATA'Unds'Mut{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(314,20,314,25)"), left{}(), format{}("%c.Mut%r"), injective{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,122)"), left{}(), format{}("%c.Set%r"), function{}()] - symbol Lbl'Stop'String{}() : SortOptionalString{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".String"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,31,1383,65)"), left{}(), format{}("%c.String%r"), injective{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,122)"), left{}(), format{}("%c.Set%r"), function{}()] + symbol Lbl'Stop'String{}() : SortOptionalString{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(".String"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,31,1383,65)"), left{}(), format{}("%c.String%r"), injective{}()] hooked-symbol Lbl'Stop'TabInstCellMap{}() : SortTabInstCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.TabInstCellMap%r"), function{}()] symbol Lbl'Stop'Type'Unds'WASM-DATA'Unds'Type{}() : SortType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(260,21,260,27)"), left{}(), format{}("%c.Type%r"), injective{}()] symbol Lbl'Stop'ValStack'Unds'WASM-DATA'Unds'ValStack{}() : SortValStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(408,25,408,35)"), left{}(), format{}("%c.ValStack%r"), injective{}()] @@ -574,18 +574,18 @@ module WRC20-LEMMAS hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Bytes"), hook{}("BYTES.int2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1766,20,1766,104)"), left{}(), format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2Float'LParUndsCommUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortFloat{} [latex{}("{\\\\it{}Int2Float}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Float"), hook{}("FLOAT.int2float"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1342,20,1342,131)"), left{}(), format{}("%cInt2Float%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Int2String"), hook{}("STRING.int2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1516,21,1516,103)"), left{}(), format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,20,678,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,19,725,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,19,667,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(282,20,282,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,18,301,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(678,20,678,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,19,725,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,19,667,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(282,20,282,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,18,301,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol LblMemInstCellMap'Coln'in'Unds'keys{}(SortMAddrCell{}, SortMemInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblMemInstCellMapItem{}(SortMAddrCell{}, SortMemInstCell{}) : SortMemInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] hooked-symbol LblModuleInstCellMap'Coln'in'Unds'keys{}(SortModIdxCell{}, SortModuleInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblModuleInstCellMapItem{}(SortModIdxCell{}, SortModuleInstCell{}) : SortModuleInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Base'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'Int{}(SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("String2Base"), hook{}("STRING.string2base"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1518,21,1518,98)"), left{}(), format{}("%cString2Base%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblString2Bool'LParUndsRParUnds'STRING-COMMON'Unds'Bool'Unds'String{}(SortString{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1473,19,1473,48)"), left{}(), format{}("%cString2Bool%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Bytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'String{}(SortString{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bytes"), hook{}("BYTES.string2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1778,20,1778,88)"), left{}(), format{}("%cString2Bytes%r %c(%r %1 %c)%r"), function{}()] @@ -594,25 +594,25 @@ module WRC20-LEMMAS hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Int"), hook{}("STRING.string2int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1515,21,1515,91)"), left{}(), format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblTabInstCellMap'Coln'in'Unds'keys{}(SortTAddrCell{}, SortTabInstCellMap{}) : SortBool{} [functional{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblTabInstCellMapItem{}(SortTAddrCell{}, SortTabInstCell{}) : SortTabInstCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] - symbol LblWasmInt{}(SortWasmIntToken{}) : SortWasmInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0"), klabel{}("WasmInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,24,81,78)"), left{}(), format{}("%1"), avoid{}(), function{}()] + symbol LblWasmInt{}(SortWasmIntToken{}) : SortWasmInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), symbol'Kywd'{}("WasmInt"), priorities{}(), right{}(), terminals{}("0"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,24,81,78)"), left{}(), format{}("%1"), avoid{}(), function{}()] symbol LblWasmIntToken2Int'LParUndsRParUnds'WASM-TEXT'Unds'Int'Unds'WasmIntToken{}(SortWasmIntToken{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntToken2Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(350,23,350,72)"), left{}(), format{}("%cWasmIntToken2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblWasmIntToken2String'LParUndsRParUnds'WASM-TEXT'Unds'String'Unds'WasmIntToken{}(SortWasmIntToken{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntToken2String"), hook{}("STRING.token2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(348,23,348,111)"), left{}(), format{}("%cWasmIntToken2String%r %c(%r %1 %c)%r"), function{}()] symbol LblWasmIntTokenString2Int'LParUndsRParUnds'WASM-TEXT'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WasmIntTokenString2Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(349,23,349,72)"), left{}(), format{}("%cWasmIntTokenString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.rem roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.rem"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,20,1248,182)"), left{}(Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c%%Float%r %2"), function{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_%Int_"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,18,940,170)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), klabel{}("_&Int_"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,18,951,182)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_%Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,18,940,170)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_&Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,18,951,182)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] symbol Lbl'UndsLPar'elem'UndsRParUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TableSpec'Unds'TableElemType'Unds'ElemSegment{}(SortTableElemType{}, SortElemSegment{}) : SortTableSpec{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("01101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(225,26,225,65)"), left{}(), format{}("%1 %c(%r %celem%r %2 %c)%r"), injective{}()] hooked-symbol Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.mul roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,20,1246,184)"), left{}(Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c*Float%r %2"), function{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), klabel{}("_*Int_"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,18,936,181)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_*Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(936,18,936,181)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] symbol Lbl'UndsPlusPlus'Defns'UndsUnds'WRC20'Unds'Defns'Unds'Defns'Unds'Defns{}(SortDefns{}, SortDefns{}) : SortDefns{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wrc20.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(304,22,304,65)"), left{}(), format{}("%1 %c++Defns%r %2"), function{}()] symbol Lbl'UndsPlusPlusUndsUnds'WASM-DATA'Unds'ValStack'Unds'ValStack'Unds'ValStack{}(SortValStack{}, SortValStack{}) : SortValStack{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(410,25,410,69)"), left{}(), format{}("%1 %c++%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), hook{}("BYTES.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1863,20,1863,89)"), left{}(), format{}("%1 %c+Bytes%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(fp.add roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,20,1250,181)"), left{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c+Float%r %2"), function{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), klabel{}("_+Int_"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,18,945,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_+Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,18,945,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1406,21,1406,139)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), format{}("%1 %c+String%r %2"), function{}()] symbol Lbl'UndsPlusUndsUnds'WASM-DATA'Unds'ValTypes'Unds'ValTypes'Unds'ValTypes{}(SortValTypes{}, SortValTypes{}) : SortValTypes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(267,25,267,68)"), left{}(), format{}("%1 %c+%r %2"), function{}()] hooked-symbol Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(fp.sub roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1251,20,1251,181)"), left{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c-Float%r %2"), function{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), klabel{}("_-Int_"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_-Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(322,18,322,120)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] symbol Lbl'UndsStopUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'FValType'Unds'LoadOpM{}(SortFValType{}, SortLoadOpM{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,27,106,46)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] symbol Lbl'UndsStopUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'FValType'Unds'StoreOpM{}(SortFValType{}, SortStoreOpM{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,27,104,48)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] @@ -629,50 +629,50 @@ module WRC20-LEMMAS symbol Lbl'UndsStopUndsUndsUndsUnds'WASM-NUMERIC'Unds'Val'Unds'IValType'Unds'IRelOp'Unds'Int'Unds'Int{}(SortIValType{}, SortIRelOp{}, SortInt{}, SortInt{}) : SortVal{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), priorities{}(), right{}(), terminals{}("01000"), klabel{}("intRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,20,324,81)"), left{}(), format{}("%1 %c.%r %2 %3 %4"), function{}()] symbol Lbl'UndsStopUndsUndsUndsUnds'WASM'Unds'Instr'Unds'IValType'Unds'StoreOp'Unds'Int'Unds'Int{}(SortIValType{}, SortStoreOp{}, SortInt{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("01000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,22,953,49)"), left{}(), format{}("%1 %c.%r %2 %3 %4"), injective{}()] hooked-symbol Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), smt-hook{}("(fp.div roundNearestTiesToEven #1 #2)"), right{}(), terminals{}("010"), hook{}("FLOAT.div"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,20,1247,184)"), left{}(Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c/Float%r %2"), function{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_/Int_"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(939,18,939,172)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_/Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(939,18,939,172)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] symbol Lbl'UndsColnUndsUnds'WASM-DATA'Unds'ValStack'Unds'Val'Unds'ValStack{}(SortVal{}, SortValStack{}) : SortValStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(409,25,409,46)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ll_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shlInt"), terminals{}("010"), klabel{}("_<=Float%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), klabel{}("_>=Int_"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1009,19,1009,176)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>=Int_"), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1009,19,1009,176)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1553,19,1553,82)"), left{}(), format{}("%1 %c>=String%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), klabel{}("_>>Int_"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,18,948,172)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>>Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(948,18,948,172)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'Float'UndsUnds'FLOAT'Unds'Bool'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Float}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fg.gt"), right{}(), terminals{}("010"), hook{}("FLOAT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1325,19,1325,147)"), left{}(Lbl'Unds-GT-'Float'UndsUnds'FLOAT'Unds'Bool'Unds'Float'Unds'Float{}()), format{}("%1 %c>Float%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), klabel{}("_>Int_"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,19,1010,171)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>Int_"), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1010,19,1010,171)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1552,19,1552,82)"), left{}(), format{}("%1 %c>String%r %2"), function{}()] hooked-symbol Lbl'Unds'FuncDefCellMap'Unds'{}(SortFuncDefCellMap{}, SortFuncDefCellMap{}) : SortFuncDefCellMap{} [unit{}(Lbl'Stop'FuncDefCellMap{}()), element{}(LblFuncDefCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'Unds'GlobalInstCellMap'Unds'{}(SortGlobalInstCellMap{}, SortGlobalInstCellMap{}) : SortGlobalInstCellMap{} [unit{}(Lbl'Stop'GlobalInstCellMap{}()), element{}(LblGlobalInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(651,19,651,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,18,251,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(651,19,651,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,18,251,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'MemInstCellMap'Unds'{}(SortMemInstCellMap{}, SortMemInstCellMap{}) : SortMemInstCellMap{} [unit{}(Lbl'Stop'MemInstCellMap{}()), element{}(LblMemInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'Unds'ModuleInstCellMap'Unds'{}(SortModuleInstCellMap{}, SortModuleInstCellMap{}) : SortModuleInstCellMap{} [unit{}(Lbl'Stop'ModuleInstCellMap{}()), element{}(LblModuleInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'TabInstCellMap'Unds'{}(SortTabInstCellMap{}, SortTabInstCellMap{}) : SortTabInstCellMap{} [unit{}(Lbl'Stop'TabInstCellMap{}()), element{}(LblTabInstCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), hook{}("BYTES.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,20,1789,90)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,19,687,107)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,18,310,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,18,310,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101"), hook{}("BYTES.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1798,18,1798,62)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,20,292,138)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), klabel{}("_^%Int__"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(934,18,934,138)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^%Int__"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(934,18,934,138)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] hooked-symbol Lbl'UndsXor-'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [latex{}("{#1}^{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPerc'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsPlus'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsStar'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'Unds'-Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(),Lbl'UndsSlsh'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), right{}(), terminals{}("010"), hook{}("FLOAT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,20,1244,98)"), left{}(Lbl'UndsXor-'Float'UndsUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}()), format{}("%1 %c^Float%r %2"), function{}()] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), klabel{}("_^Int_"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,18,933,177)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(933,18,933,177)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Defns'Unds'Defn'Unds'Defns{}(SortDefn{}, SortDefns{}) : SortDefns{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,27,59,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Instrs'Unds'Instr'Unds'Instrs{}(SortInstr{}, SortInstrs{}) : SortInstrs{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,27,58,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-COMMON-SYNTAX'Unds'Stmts'Unds'Stmt'Unds'Stmts{}(SortStmt{}, SortStmts{}) : SortStmts{} [functional{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), anywhere{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,27,60,65)"), left{}(), format{}("%1 %c%r %2"), injective{}()] @@ -697,98 +697,98 @@ module WRC20-LEMMAS symbol Lbl'UndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TableType'Unds'TextLimits'Unds'TableElemType{}(SortTextLimits{}, SortTableElemType{}) : SortTableType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(230,26,230,49)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'TextLimits'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortTextLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(157,33,157,39)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'FuncSpec'Unds'TypeUse'Unds'LocalDecls'Unds'Instrs{}(SortTypeUse{}, SortLocalDecls{}, SortInstrs{}) : SortFuncSpec{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(204,25,204,49)"), left{}(), format{}("%1 %2 %3"), injective{}()] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andBool_"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(823,19,823,189)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andThenBool_"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(824,19,824,151)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(823,19,823,189)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andThenBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(824,19,824,151)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] symbol Lbl'Unds'appendDefn'UndsUnds'WASM-TEXT'Unds'Defns'Unds'Defns'Unds'Defn{}(SortDefns{}, SortDefn{}) : SortDefns{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(403,22,403,55)"), left{}(), format{}("%1 %cappendDefn%r %2"), function{}()] symbol Lbl'Unds'appendInstrs'UndsUnds'WASM-TEXT'Unds'Instrs'Unds'Instrs'Unds'Instrs{}(SortInstrs{}, SortInstrs{}) : SortInstrs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(565,23,565,66)"), left{}(), format{}("%1 %cappendInstrs%r %2"), function{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_divInt_"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(942,18,942,121)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_divInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(942,18,942,121)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1021,19,1021,52)"), left{}(), format{}("%1 %cdividesInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_impliesBool_"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,19,828,150)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_impliesBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,19,828,150)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(734,19,734,101)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(368,19,368,93)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_modInt_"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(943,18,943,121)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orBool_"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(826,19,826,184)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orElseBool_"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(827,19,827,148)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_modInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(943,18,943,121)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(826,19,826,184)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orElseBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(827,19,827,148)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] symbol Lbl'Unds'up'Slsh'Int'UndsUnds'WASM'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1195,20,1195,46)"), left{}(), format{}("%1 %cup/Int%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_xorBool_"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(825,19,825,143)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), klabel{}("_xorInt_"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,188)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(268,18,268,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), klabel{}("_|Int_"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,179)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(825,19,825,143)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorInt_"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,188)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(268,18,268,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|Int_"), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,179)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,18,558,88)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] - symbol LblaAbs{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aAbs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,57)"), left{}(), format{}("%cabs%r"), injective{}()] - symbol LblaBlock{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aBlock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,22,440,84)"), left{}(), format{}("%c#block%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaBr{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(452,22,452,53)"), left{}(), format{}("%c#br%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaBr'Unds'if{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr_if"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,22,460,66)"), left{}(), format{}("%c#br_if%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaBr'Unds'table{}(SortInts{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aBr_table"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,22,469,73)"), left{}(), format{}("%c#br_table%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCall{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,22,777,55)"), left{}(), format{}("%c#call%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCall'Unds'indirect{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aCall_indirect"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(789,22,789,82)"), left{}(), format{}("%c#call_indirect%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaCeil{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aCeil"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,22,22,57)"), left{}(), format{}("%cceil%r"), injective{}()] - symbol LblaClz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aClz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,22,13,52)"), left{}(), format{}("%cclz%r"), injective{}()] - symbol LblaConvert'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,72)"), left{}(), format{}("%cconvert_i32_s%r"), injective{}()] - symbol LblaConvert'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,72)"), left{}(), format{}("%cconvert_i32_u%r"), injective{}()] - symbol LblaConvert'Unds'i64'Unds's{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i64_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,72)"), left{}(), format{}("%cconvert_i64_s%r"), injective{}()] - symbol LblaConvert'Unds'i64'Unds'u{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aConvert_i64_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,72)"), left{}(), format{}("%cconvert_i64_u%r"), injective{}()] - symbol LblaCtz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aCtz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,52)"), left{}(), format{}("%cctz%r"), injective{}()] - symbol LblaCvtOp{}(SortValType{}, SortCvtOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aCvtOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,27,83,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaDataDefn{}(SortInt{}, SortInstrs{}, SortBytes{}) : SortDataDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aDataDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1174,25,1174,101)"), left{}(), format{}("%c#data%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaDemote'Unds'f64{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aDemote_f64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,66)"), left{}(), format{}("%cdemote_f64%r"), injective{}()] - symbol LblaDrop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aDrop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,27,84,81)"), left{}(), format{}("%cdrop%r"), injective{}()] - symbol LblaElemDefn{}(SortInt{}, SortInstrs{}, SortInts{}) : SortElemDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aElemDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,25,1143,107)"), left{}(), format{}("%c#elem%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaEqz{}() : SortTestOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aEqz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,23,53,50)"), left{}(), format{}("%ceqz%r"), injective{}()] - symbol LblaExportDefn{}(SortWasmString{}, SortInt{}) : SortExportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aExportDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1223,27,1223,95)"), left{}(), format{}("%c#export%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaExtend'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aExtend_i32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,70)"), left{}(), format{}("%cextend_i32_s%r"), injective{}()] - symbol LblaExtend'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aExtend_i32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,70)"), left{}(), format{}("%cextend_i32_u%r"), injective{}()] - symbol LblaFBinOp{}(SortFValType{}, SortFBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFBinOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,27,79,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFConst{}(SortFValType{}, SortNumber{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0110"), klabel{}("aFConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,27,75,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] - symbol LblaFRelOp{}(SortFValType{}, SortFRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,27,82,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFUnOp{}(SortFValType{}, SortFUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFUnOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,27,77,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaFloor{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aFloor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,57)"), left{}(), format{}("%cfloor%r"), injective{}()] - symbol LblaFuncDefn{}(SortInt{}, SortVecType{}, SortInstrs{}, SortFuncMetadata{}) : SortFuncDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("aFuncDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(689,25,689,123)"), left{}(), format{}("%c#func%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol LblaFuncDesc{}(SortOptionalId{}, SortInt{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aFuncDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,27,1244,112)"), left{}(), format{}("%c#funcDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaFuncType{}(SortVecType{}, SortVecType{}) : SortFuncType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aFuncType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,25,248,72)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] - symbol LblaGlobal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aGlobal.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(582,22,582,76)"), left{}(), format{}("%c#global.get%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaGlobal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aGlobal.set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(583,22,583,76)"), left{}(), format{}("%c#global.set%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaGlobalDefn{}(SortGlobalType{}, SortInstrs{}, SortOptionalId{}) : SortGlobalDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aGlobalDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(551,27,551,117)"), left{}(), format{}("%c#global%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaGlobalDesc{}(SortOptionalId{}, SortGlobalType{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aGlobalDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,27,1245,112)"), left{}(), format{}("%c#globalDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaGlobalType{}(SortMut{}, SortValType{}) : SortGlobalType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("00"), klabel{}("aGlobalType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(548,27,548,67)"), left{}(), format{}("%1 %2"), injective{}()] - symbol LblaGrow{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aGrow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,27,90,81)"), left{}(), format{}("%cmemory.grow%r"), injective{}()] - symbol LblaIBinOp{}(SortIValType{}, SortIBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIBinOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,27,78,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIConst{}(SortIValType{}, SortWasmInt{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0110"), klabel{}("aIConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,27,74,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] - symbol LblaIRelOp{}(SortIValType{}, SortIRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIRelOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,27,81,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIUnOp{}(SortIValType{}, SortIUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aIUnOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,27,76,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaIf{}(SortVecType{}, SortInstrs{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("aIf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(478,22,478,112)"), left{}(), format{}("%c#if%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol LblaImportDefn{}(SortWasmString{}, SortWasmString{}, SortImportDesc{}) : SortImportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aImportDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,27,1243,112)"), left{}(), format{}("%c#import%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaLoad{}(SortValType{}, SortLoadOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,22,1001,81)"), left{}(), format{}("%c#load%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaLocal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,22,522,74)"), left{}(), format{}("%c#local.get%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLocal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,22,523,74)"), left{}(), format{}("%c#local.set%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLocal'Stop'tee{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aLocal.tee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,22,524,74)"), left{}(), format{}("%c#local.tee%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaLoop{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aLoop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,22,488,82)"), left{}(), format{}("%c#loop%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaMemoryDefn{}(SortLimits{}, SortOptionalId{}) : SortMemoryDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aMemoryDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,27,916,101)"), left{}(), format{}("%c#memory%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaMemoryDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aMemoryDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,27,1247,112)"), left{}(), format{}("%c#memoryDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaModuleDecl{}(SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortModuleMetadata{}) : SortModuleDecl{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101010101010101010101"), klabel{}("aModuleDecl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1375,27,1375,239)"), left{}(), format{}("%c#module%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c)%r"), injective{}()] - symbol LblaNearest{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNearest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,57)"), left{}(), format{}("%cnearest%r"), injective{}()] - symbol LblaNeg{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNeg"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,22,19,57)"), left{}(), format{}("%cneg%r"), injective{}()] - symbol LblaNop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aNop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,27,86,80)"), left{}(), format{}("%cnop%r"), injective{}()] - symbol LblaPopcnt{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aPopcnt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,22,15,55)"), left{}(), format{}("%cpopcnt%r"), injective{}()] - symbol LblaPromote'Unds'f32{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aPromote_f32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,68)"), left{}(), format{}("%cpromote_f32%r"), injective{}()] - symbol LblaReturn{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aReturn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,27,88,83)"), left{}(), format{}("%creturn%r"), injective{}()] - symbol LblaSelect{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSelect"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,27,85,83)"), left{}(), format{}("%cselect%r"), injective{}()] - symbol LblaSize{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSize"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,27,89,81)"), left{}(), format{}("%cmemory.size%r"), injective{}()] - symbol LblaSqrt{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aSqrt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,22,20,57)"), left{}(), format{}("%csqrt%r"), injective{}()] - symbol LblaStartDefn{}(SortInt{}) : SortStartDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("aStartDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,26,1206,65)"), left{}(), format{}("%c#start%r %c(%r %1 %c)%r"), injective{}()] - symbol LblaStore{}(SortValType{}, SortStoreOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("aStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,22,952,84)"), left{}(), format{}("%c#store%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblaTableDefn{}(SortLimits{}, SortOptionalId{}) : SortTableDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTableDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,26,873,99)"), left{}(), format{}("%c#table%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaTableDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTableDesc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,27,1246,112)"), left{}(), format{}("%c#tableDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaTestOp{}(SortIValType{}, SortTestOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("aTestOp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,27,80,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol LblaTrunc{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,22,23,57)"), left{}(), format{}("%ctrunc%r"), injective{}()] - symbol LblaTrunc'Unds'f32'Unds's{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,68)"), left{}(), format{}("%ctrunc_f32_s%r"), injective{}()] - symbol LblaTrunc'Unds'f32'Unds'u{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,68)"), left{}(), format{}("%ctrunc_f32_u%r"), injective{}()] - symbol LblaTrunc'Unds'f64'Unds's{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f64_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,68)"), left{}(), format{}("%ctrunc_f64_s%r"), injective{}()] - symbol LblaTrunc'Unds'f64'Unds'u{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aTrunc_f64_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,68)"), left{}(), format{}("%ctrunc_f64_u%r"), injective{}()] - symbol LblaTypeDefn{}(SortFuncType{}, SortOptionalId{}) : SortTypeDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("aTypeDefn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,25,660,95)"), left{}(), format{}("%c#type%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LblaUnreachable{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aUnreachable"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,27,87,88)"), left{}(), format{}("%cunreachable%r"), injective{}()] - symbol LblaVecType{}(SortValTypes{}) : SortVecType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("101"), klabel{}("aVecType"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(245,25,245,67)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] - symbol LblaWrap'Unds'i64{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("aWrap_i64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,62)"), left{}(), format{}("%cwrap_i64%r"), injective{}()] + symbol LblaAbs{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aAbs"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(18,22,18,57)"), left{}(), format{}("%cabs%r"), injective{}()] + symbol LblaBlock{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBlock"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,22,440,84)"), left{}(), format{}("%c#block%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaBr{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(452,22,452,53)"), left{}(), format{}("%c#br%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaBr'Unds'if{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr_if"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,22,460,66)"), left{}(), format{}("%c#br_if%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaBr'Unds'table{}(SortInts{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aBr_table"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,22,469,73)"), left{}(), format{}("%c#br_table%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCall{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCall"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,22,777,55)"), left{}(), format{}("%c#call%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCall'Unds'indirect{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCall_indirect"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(789,22,789,82)"), left{}(), format{}("%c#call_indirect%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaCeil{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aCeil"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(22,22,22,57)"), left{}(), format{}("%cceil%r"), injective{}()] + symbol LblaClz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aClz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,22,13,52)"), left{}(), format{}("%cclz%r"), injective{}()] + symbol LblaConvert'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,25,81,72)"), left{}(), format{}("%cconvert_i32_s%r"), injective{}()] + symbol LblaConvert'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,25,82,72)"), left{}(), format{}("%cconvert_i32_u%r"), injective{}()] + symbol LblaConvert'Unds'i64'Unds's{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i64_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,72)"), left{}(), format{}("%cconvert_i64_s%r"), injective{}()] + symbol LblaConvert'Unds'i64'Unds'u{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aConvert_i64_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,72)"), left{}(), format{}("%cconvert_i64_u%r"), injective{}()] + symbol LblaCtz{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aCtz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,22,14,52)"), left{}(), format{}("%cctz%r"), injective{}()] + symbol LblaCvtOp{}(SortValType{}, SortCvtOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aCvtOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(83,27,83,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaDataDefn{}(SortInt{}, SortInstrs{}, SortBytes{}) : SortDataDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aDataDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1174,25,1174,101)"), left{}(), format{}("%c#data%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaDemote'Unds'f64{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aDemote_f64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,25,95,66)"), left{}(), format{}("%cdemote_f64%r"), injective{}()] + symbol LblaDrop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aDrop"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(84,27,84,81)"), left{}(), format{}("%cdrop%r"), injective{}()] + symbol LblaElemDefn{}(SortInt{}, SortInstrs{}, SortInts{}) : SortElemDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aElemDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1143,25,1143,107)"), left{}(), format{}("%c#elem%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaEqz{}() : SortTestOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aEqz"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,23,53,50)"), left{}(), format{}("%ceqz%r"), injective{}()] + symbol LblaExportDefn{}(SortWasmString{}, SortInt{}) : SortExportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aExportDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1223,27,1223,95)"), left{}(), format{}("%c#export%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaExtend'Unds'i32'Unds's{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aExtend_i32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,25,80,70)"), left{}(), format{}("%cextend_i32_s%r"), injective{}()] + symbol LblaExtend'Unds'i32'Unds'u{}() : SortCvti32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aExtend_i32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,25,79,70)"), left{}(), format{}("%cextend_i32_u%r"), injective{}()] + symbol LblaFBinOp{}(SortFValType{}, SortFBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFBinOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,27,79,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFConst{}(SortFValType{}, SortNumber{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFConst"), priorities{}(), right{}(), terminals{}("0110"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(75,27,75,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] + symbol LblaFRelOp{}(SortFValType{}, SortFRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFRelOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,27,82,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFUnOp{}(SortFValType{}, SortFUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFUnOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,27,77,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaFloor{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aFloor"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,57)"), left{}(), format{}("%cfloor%r"), injective{}()] + symbol LblaFuncDefn{}(SortInt{}, SortVecType{}, SortInstrs{}, SortFuncMetadata{}) : SortFuncDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFuncDefn"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(689,25,689,123)"), left{}(), format{}("%c#func%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol LblaFuncDesc{}(SortOptionalId{}, SortInt{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aFuncDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1244,27,1244,112)"), left{}(), format{}("%c#funcDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaFuncType{}(SortVecType{}, SortVecType{}) : SortFuncType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("aFuncType"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,25,248,72)"), left{}(), format{}("%1 %c->%r %2"), injective{}()] + symbol LblaGlobal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobal.get"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(582,22,582,76)"), left{}(), format{}("%c#global.get%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaGlobal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobal.set"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(583,22,583,76)"), left{}(), format{}("%c#global.set%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaGlobalDefn{}(SortGlobalType{}, SortInstrs{}, SortOptionalId{}) : SortGlobalDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(551,27,551,117)"), left{}(), format{}("%c#global%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaGlobalDesc{}(SortOptionalId{}, SortGlobalType{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,27,1245,112)"), left{}(), format{}("%c#globalDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaGlobalType{}(SortMut{}, SortValType{}) : SortGlobalType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGlobalType"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(548,27,548,67)"), left{}(), format{}("%1 %2"), injective{}()] + symbol LblaGrow{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aGrow"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,27,90,81)"), left{}(), format{}("%cmemory.grow%r"), injective{}()] + symbol LblaIBinOp{}(SortIValType{}, SortIBinOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIBinOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(78,27,78,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIConst{}(SortIValType{}, SortWasmInt{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIConst"), priorities{}(), right{}(), terminals{}("0110"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,27,74,83)"), left{}(), format{}("%1 %c.%r %cconst%r %2"), injective{}()] + symbol LblaIRelOp{}(SortIValType{}, SortIRelOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIRelOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,27,81,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIUnOp{}(SortIValType{}, SortIUnOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIUnOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(76,27,76,82)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaIf{}(SortVecType{}, SortInstrs{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aIf"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(478,22,478,112)"), left{}(), format{}("%c#if%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol LblaImportDefn{}(SortWasmString{}, SortWasmString{}, SortImportDesc{}) : SortImportDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aImportDefn"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,27,1243,112)"), left{}(), format{}("%c#import%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaLoad{}(SortValType{}, SortLoadOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLoad"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,22,1001,81)"), left{}(), format{}("%c#load%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaLocal'Stop'get{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.get"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,22,522,74)"), left{}(), format{}("%c#local.get%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLocal'Stop'set{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.set"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,22,523,74)"), left{}(), format{}("%c#local.set%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLocal'Stop'tee{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLocal.tee"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,22,524,74)"), left{}(), format{}("%c#local.tee%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaLoop{}(SortVecType{}, SortInstrs{}, SortBlockMetaData{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aLoop"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,22,488,82)"), left{}(), format{}("%c#loop%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaMemoryDefn{}(SortLimits{}, SortOptionalId{}) : SortMemoryDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aMemoryDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,27,916,101)"), left{}(), format{}("%c#memory%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaMemoryDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aMemoryDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1247,27,1247,112)"), left{}(), format{}("%c#memoryDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaModuleDecl{}(SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortDefns{}, SortModuleMetadata{}) : SortModuleDecl{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aModuleDecl"), priorities{}(), right{}(), terminals{}("110101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1375,27,1375,239)"), left{}(), format{}("%c#module%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c)%r"), injective{}()] + symbol LblaNearest{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aNearest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,57)"), left{}(), format{}("%cnearest%r"), injective{}()] + symbol LblaNeg{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aNeg"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,22,19,57)"), left{}(), format{}("%cneg%r"), injective{}()] + symbol LblaNop{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aNop"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,27,86,80)"), left{}(), format{}("%cnop%r"), injective{}()] + symbol LblaPopcnt{}() : SortIUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aPopcnt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,22,15,55)"), left{}(), format{}("%cpopcnt%r"), injective{}()] + symbol LblaPromote'Unds'f32{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aPromote_f32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,25,90,68)"), left{}(), format{}("%cpromote_f32%r"), injective{}()] + symbol LblaReturn{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aReturn"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,27,88,83)"), left{}(), format{}("%creturn%r"), injective{}()] + symbol LblaSelect{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aSelect"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,27,85,83)"), left{}(), format{}("%cselect%r"), injective{}()] + symbol LblaSize{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aSize"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,27,89,81)"), left{}(), format{}("%cmemory.size%r"), injective{}()] + symbol LblaSqrt{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aSqrt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(20,22,20,57)"), left{}(), format{}("%csqrt%r"), injective{}()] + symbol LblaStartDefn{}(SortInt{}) : SortStartDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aStartDefn"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1206,26,1206,65)"), left{}(), format{}("%c#start%r %c(%r %1 %c)%r"), injective{}()] + symbol LblaStore{}(SortValType{}, SortStoreOp{}, SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aStore"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,22,952,84)"), left{}(), format{}("%c#store%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblaTableDefn{}(SortLimits{}, SortOptionalId{}) : SortTableDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTableDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,26,873,99)"), left{}(), format{}("%c#table%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaTableDesc{}(SortOptionalId{}, SortLimits{}) : SortImportDesc{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTableDesc"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1246,27,1246,112)"), left{}(), format{}("%c#tableDesc%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaTestOp{}(SortIValType{}, SortTestOp{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTestOp"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(80,27,80,83)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol LblaTrunc{}() : SortFUnOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,22,23,57)"), left{}(), format{}("%ctrunc%r"), injective{}()] + symbol LblaTrunc'Unds'f32'Unds's{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,25,91,68)"), left{}(), format{}("%ctrunc_f32_s%r"), injective{}()] + symbol LblaTrunc'Unds'f32'Unds'u{}() : SortCvtf32Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,25,92,68)"), left{}(), format{}("%ctrunc_f32_u%r"), injective{}()] + symbol LblaTrunc'Unds'f64'Unds's{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f64_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(96,25,96,68)"), left{}(), format{}("%ctrunc_f64_s%r"), injective{}()] + symbol LblaTrunc'Unds'f64'Unds'u{}() : SortCvtf64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aTrunc_f64_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,68)"), left{}(), format{}("%ctrunc_f64_u%r"), injective{}()] + symbol LblaTypeDefn{}(SortFuncType{}, SortOptionalId{}) : SortTypeDefn{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aTypeDefn"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(660,25,660,95)"), left{}(), format{}("%c#type%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblaUnreachable{}() : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("aUnreachable"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,27,87,88)"), left{}(), format{}("%cunreachable%r"), injective{}()] + symbol LblaVecType{}(SortValTypes{}) : SortVecType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("aVecType"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(245,25,245,67)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] + symbol LblaWrap'Unds'i64{}() : SortCvti64Op{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("aWrap_i64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,25,85,62)"), left{}(), format{}("%cwrap_i64%r"), injective{}()] hooked-symbol LblabsFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fp.abs"), right{}(), terminals{}("1101"), klabel{}("absFloat"), hook{}("FLOAT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1289,20,1289,105)"), left{}(), format{}("%cabsFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), right{}(), terminals{}("1101"), klabel{}("absInt"), hook{}("INT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(972,18,972,123)"), left{}(), format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblacosFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("acosFloat"), hook{}("FLOAT.acos"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1300,20,1300,76)"), left{}(), format{}("%cacosFloat%r %c(%r %1 %c)%r"), function{}()] @@ -804,7 +804,7 @@ module WRC20-LEMMAS hooked-symbol LblasinFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("asinFloat"), hook{}("FLOAT.asin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1299,20,1299,76)"), left{}(), format{}("%casinFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblatan2Float'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("atan2Float"), hook{}("FLOAT.atan2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1302,20,1302,77)"), left{}(), format{}("%catan2Float%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblatanFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("atanFloat"), hook{}("FLOAT.atan"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1301,20,1301,88)"), left{}(), format{}("%catanFloat%r %c(%r %1 %c)%r"), function{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("bigEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1727,25,1727,61)"), left{}(), format{}("%cBE%r"), injective{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("bigEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1727,25,1727,61)"), left{}(), format{}("%cBE%r"), injective{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("bitRangeInt"), hook{}("INT.bitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(997,18,997,102)"), left{}(), format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] symbol Lblblock'UndsUndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,27,121,78)"), left{}(), format{}("%cblock%r %1 %2 %3 %cend%r %4"), injective{}()] symbol Lblbr'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,36)"), left{}(), format{}("%cbr%r %1"), injective{}()] @@ -830,28 +830,28 @@ module WRC20-LEMMAS hooked-symbol LblexpFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("expFloat"), hook{}("FLOAT.exp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,20,1294,87)"), left{}(), format{}("%cexpFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblexponentBitsFloat'LParUndsRParUnds'FLOAT'Unds'Int'Unds'Float{}(SortFloat{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("exponentBitsFloat"), hook{}("FLOAT.exponentBits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1200,18,1200,90)"), left{}(), format{}("%cexponentBitsFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblexponentFloat'LParUndsRParUnds'FLOAT'Unds'Int'Unds'Float{}(SortFloat{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("exponentFloat"), hook{}("FLOAT.exponent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1208,18,1208,82)"), left{}(), format{}("%cexponentFloat%r %c(%r %1 %c)%r"), function{}()] - symbol Lblf32{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("f32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,51)"), left{}(), format{}("%cf32%r"), injective{}()] - symbol Lblf64{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("f64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,55,87,81)"), left{}(), format{}("%cf64%r"), injective{}()] + symbol Lblf32{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("f32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,25,87,51)"), left{}(), format{}("%cf32%r"), injective{}()] + symbol Lblf64{}() : SortFValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("f64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(87,55,87,81)"), left{}(), format{}("%cf64%r"), injective{}()] hooked-symbol LblfillList'LParUndsCommUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("fillList"), hook{}("LIST.fill"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(715,19,715,99)"), left{}(), format{}("%cfillList%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] hooked-symbol LblfindChar'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findChar"), hook{}("STRING.findChar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1460,18,1460,115)"), left{}(), format{}("%cfindChar%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblfindString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findString"), hook{}("STRING.find"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1449,18,1449,110)"), left{}(), format{}("%cfindString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblfloatAdd{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatAdd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,23,44,54)"), left{}(), format{}("%cadd%r"), injective{}()] - symbol LblfloatCopysign{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatCopysign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,23,50,64)"), left{}(), format{}("%ccopysign%r"), injective{}()] - symbol LblfloatDiv{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatDiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,23,47,54)"), left{}(), format{}("%cdiv%r"), injective{}()] - symbol LblfloatEq{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatEq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,23,72,52)"), left{}(), format{}("%ceq%r"), injective{}()] - symbol LblfloatGe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatGe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,23,71,52)"), left{}(), format{}("%cge%r"), injective{}()] - symbol LblfloatGt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatGt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,23,69,52)"), left{}(), format{}("%cgt%r"), injective{}()] - symbol LblfloatLe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatLe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,23,70,52)"), left{}(), format{}("%cle%r"), injective{}()] - symbol LblfloatLt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatLt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,23,68,52)"), left{}(), format{}("%clt%r"), injective{}()] - symbol LblfloatMax{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,54)"), left{}(), format{}("%cmax%r"), injective{}()] - symbol LblfloatMin{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,23,48,54)"), left{}(), format{}("%cmin%r"), injective{}()] - symbol LblfloatMul{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatMul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,23,46,54)"), left{}(), format{}("%cmul%r"), injective{}()] - symbol LblfloatNe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatNe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,23,73,52)"), left{}(), format{}("%cne%r"), injective{}()] - symbol LblfloatSub{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("floatSub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,23,45,54)"), left{}(), format{}("%csub%r"), injective{}()] + symbol LblfloatAdd{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatAdd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,23,44,54)"), left{}(), format{}("%cadd%r"), injective{}()] + symbol LblfloatCopysign{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatCopysign"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,23,50,64)"), left{}(), format{}("%ccopysign%r"), injective{}()] + symbol LblfloatDiv{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatDiv"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,23,47,54)"), left{}(), format{}("%cdiv%r"), injective{}()] + symbol LblfloatEq{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatEq"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,23,72,52)"), left{}(), format{}("%ceq%r"), injective{}()] + symbol LblfloatGe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatGe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,23,71,52)"), left{}(), format{}("%cge%r"), injective{}()] + symbol LblfloatGt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatGt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,23,69,52)"), left{}(), format{}("%cgt%r"), injective{}()] + symbol LblfloatLe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatLe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,23,70,52)"), left{}(), format{}("%cle%r"), injective{}()] + symbol LblfloatLt{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatLt"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,23,68,52)"), left{}(), format{}("%clt%r"), injective{}()] + symbol LblfloatMax{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMax"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,23,49,54)"), left{}(), format{}("%cmax%r"), injective{}()] + symbol LblfloatMin{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMin"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,23,48,54)"), left{}(), format{}("%cmin%r"), injective{}()] + symbol LblfloatMul{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatMul"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,23,46,54)"), left{}(), format{}("%cmul%r"), injective{}()] + symbol LblfloatNe{}() : SortFRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatNe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,23,73,52)"), left{}(), format{}("%cne%r"), injective{}()] + symbol LblfloatSub{}() : SortFBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("floatSub"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,23,45,54)"), left{}(), format{}("%csub%r"), injective{}()] hooked-symbol LblfloorFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("floorFloat"), hook{}("FLOAT.floor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1291,20,1291,89)"), left{}(), format{}("%cfloorFloat%r %c(%r %1 %c)%r"), function{}()] symbol Lblframe'UndsUndsUndsUndsUnds'WASM'Unds'Frame'Unds'Int'Unds'ValTypes'Unds'ValStack'Unds'Map{}(SortInt{}, SortValTypes{}, SortValStack{}, SortMap{}) : SortFrame{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(733,22,733,54)"), left{}(), format{}("%cframe%r %1 %2 %3 %4"), injective{}()] symbol LblfreshInt'LParUndsRParUnds'INT'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), freshGenerator{}(), klabel{}("freshInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1137,18,1137,81)"), left{}(), format{}("%cfreshInt%r %c(%r %1 %c)%r"), private{}(), function{}()] - symbol LblfuncMeta{}(SortOptionalId{}, SortMap{}) : SortFuncMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("funcMeta"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(722,29,722,91)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LblfuncMeta{}(SortOptionalId{}, SortMap{}) : SortFuncMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("funcMeta"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(722,29,722,91)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] symbol Lblfunc'Unds'WASM-DATA-COMMON-SYNTAX'Unds'AllocatedKind{}() : SortAllocatedKind{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,30,134,35)"), left{}(), format{}("%cfunc%r"), injective{}()] symbol Lblfuncref'Unds'WASM-TEXT-COMMON-SYNTAX'Unds'TableElemType{}() : SortTableElemType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,30,231,38)"), left{}(), format{}("%cfuncref%r"), injective{}()] symbol LblgatherTypes'LParUndsCommUndsRParUnds'WASM'Unds'VecType'Unds'TypeKeyWord'Unds'TypeDecls{}(SortTypeKeyWord{}, SortTypeDecls{}) : SortVecType{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("gatherTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(623,25,623,85)"), left{}(), format{}("%cgatherTypes%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -860,8 +860,8 @@ module WRC20-LEMMAS symbol Lblglobal'Stop'set'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,27,97,44)"), left{}(), format{}("%cglobal.set%r %1"), injective{}()] symbol Lblglobal'Unds'WASM-DATA-COMMON-SYNTAX'Unds'AllocatedKind{}() : SortAllocatedKind{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(134,60,134,67)"), left{}(), format{}("%cglobal%r"), injective{}()] symbol Lblgrow'UndsUnds'WASM'Unds'Instr'Unds'Int{}(SortInt{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1075,22,1075,31)"), left{}(), format{}("%cgrow%r %1"), injective{}()] - symbol Lbli32{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("i32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,51)"), left{}(), format{}("%ci32%r"), injective{}()] - symbol Lbli64{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("i64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,55,86,81)"), left{}(), format{}("%ci64%r"), injective{}()] + symbol Lbli32{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("i32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,25,86,51)"), left{}(), format{}("%ci32%r"), injective{}()] + symbol Lbli64{}() : SortIValType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("i64"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(86,55,86,81)"), left{}(), format{}("%ci64%r"), injective{}()] symbol Lblif'UndsUndsUnds'else'UndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,27,123,100)"), left{}(), format{}("%cif%r %1 %2 %3 %celse%r %4 %5 %cend%r %6"), injective{}()] symbol Lblif'UndsUndsUnds'end'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'BlockInstr'Unds'OptionalId'Unds'TypeDecls'Unds'Instrs'Unds'OptionalId{}(SortOptionalId{}, SortTypeDecls{}, SortInstrs{}, SortOptionalId{}) : SortBlockInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("100010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,27,124,100)"), left{}(), format{}("%cif%r %1 %2 %3 %cend%r %4"), injective{}()] symbol LblinitCurFrameCell{}() : SortCurFrameCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitCurFrameCell%r"), function{}()] @@ -930,31 +930,31 @@ module WRC20-LEMMAS symbol LblinitWasmCell{}() : SortWasmCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitWasmCell%r"), function{}()] symbol Lblinit'Unds'local'UndsUndsUnds'WASM'Unds'Instr'Unds'Int'Unds'Val{}(SortInt{}, SortVal{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("100"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(502,23,502,43)"), left{}(), format{}("%cinit_local%r %1 %2"), injective{}()] symbol Lblinit'Unds'locals'UndsUnds'WASM'Unds'Instr'Unds'ValStack{}(SortValStack{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(503,23,503,48)"), left{}(), format{}("%cinit_locals%r %1"), injective{}()] - symbol LblintAdd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intAdd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,23,27,52)"), left{}(), format{}("%cadd%r"), injective{}()] - symbol LblintAnd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intAnd"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,52)"), left{}(), format{}("%cand%r"), injective{}()] - symbol LblintDiv'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intDiv_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(32,23,32,56)"), left{}(), format{}("%cdiv_s%r"), injective{}()] - symbol LblintDiv'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intDiv_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,23,30,56)"), left{}(), format{}("%cdiv_u%r"), injective{}()] - symbol LblintEq{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intEq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,23,56,50)"), left{}(), format{}("%ceq%r"), injective{}()] - symbol LblintGe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGe_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,23,65,54)"), left{}(), format{}("%cge_s%r"), injective{}()] - symbol LblintGe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGe_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,23,63,54)"), left{}(), format{}("%cge_u%r"), injective{}()] - symbol LblintGt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGt_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,23,61,54)"), left{}(), format{}("%cgt_s%r"), injective{}()] - symbol LblintGt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intGt_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,23,59,54)"), left{}(), format{}("%cgt_u%r"), injective{}()] - symbol LblintLe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLe_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,23,64,54)"), left{}(), format{}("%cle_s%r"), injective{}()] - symbol LblintLe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLe_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,23,62,54)"), left{}(), format{}("%cle_u%r"), injective{}()] - symbol LblintLt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLt_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,23,60,54)"), left{}(), format{}("%clt_s%r"), injective{}()] - symbol LblintLt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intLt_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,23,58,54)"), left{}(), format{}("%clt_u%r"), injective{}()] - symbol LblintMul{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intMul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(29,23,29,52)"), left{}(), format{}("%cmul%r"), injective{}()] - symbol LblintNe{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intNe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,23,57,50)"), left{}(), format{}("%cne%r"), injective{}()] - symbol LblintOr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intOr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,50)"), left{}(), format{}("%cor%r"), injective{}()] - symbol LblintRem'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRem_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,56)"), left{}(), format{}("%crem_s%r"), injective{}()] - symbol LblintRem'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRem_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,23,31,56)"), left{}(), format{}("%crem_u%r"), injective{}()] - symbol LblintRotl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRotl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,54)"), left{}(), format{}("%crotl%r"), injective{}()] - symbol LblintRotr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intRotr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,23,41,54)"), left{}(), format{}("%crotr%r"), injective{}()] - symbol LblintShl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,52)"), left{}(), format{}("%cshl%r"), injective{}()] - symbol LblintShr'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShr_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,56)"), left{}(), format{}("%cshr_s%r"), injective{}()] - symbol LblintShr'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intShr_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,23,38,56)"), left{}(), format{}("%cshr_u%r"), injective{}()] - symbol LblintSub{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intSub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,23,28,52)"), left{}(), format{}("%csub%r"), injective{}()] - symbol LblintXor{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("intXor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,23,36,52)"), left{}(), format{}("%cxor%r"), injective{}()] + symbol LblintAdd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intAdd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,23,27,52)"), left{}(), format{}("%cadd%r"), injective{}()] + symbol LblintAnd{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intAnd"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,23,34,52)"), left{}(), format{}("%cand%r"), injective{}()] + symbol LblintDiv'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intDiv_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(32,23,32,56)"), left{}(), format{}("%cdiv_s%r"), injective{}()] + symbol LblintDiv'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intDiv_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,23,30,56)"), left{}(), format{}("%cdiv_u%r"), injective{}()] + symbol LblintEq{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intEq"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,23,56,50)"), left{}(), format{}("%ceq%r"), injective{}()] + symbol LblintGe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGe_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,23,65,54)"), left{}(), format{}("%cge_s%r"), injective{}()] + symbol LblintGe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGe_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,23,63,54)"), left{}(), format{}("%cge_u%r"), injective{}()] + symbol LblintGt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGt_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,23,61,54)"), left{}(), format{}("%cgt_s%r"), injective{}()] + symbol LblintGt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intGt_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,23,59,54)"), left{}(), format{}("%cgt_u%r"), injective{}()] + symbol LblintLe'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLe_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,23,64,54)"), left{}(), format{}("%cle_s%r"), injective{}()] + symbol LblintLe'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLe_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,23,62,54)"), left{}(), format{}("%cle_u%r"), injective{}()] + symbol LblintLt'Unds's{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLt_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,23,60,54)"), left{}(), format{}("%clt_s%r"), injective{}()] + symbol LblintLt'Unds'u{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intLt_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,23,58,54)"), left{}(), format{}("%clt_u%r"), injective{}()] + symbol LblintMul{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intMul"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(29,23,29,52)"), left{}(), format{}("%cmul%r"), injective{}()] + symbol LblintNe{}() : SortIRelOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intNe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,23,57,50)"), left{}(), format{}("%cne%r"), injective{}()] + symbol LblintOr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intOr"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,50)"), left{}(), format{}("%cor%r"), injective{}()] + symbol LblintRem'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRem_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(33,23,33,56)"), left{}(), format{}("%crem_s%r"), injective{}()] + symbol LblintRem'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRem_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,23,31,56)"), left{}(), format{}("%crem_u%r"), injective{}()] + symbol LblintRotl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRotl"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,54)"), left{}(), format{}("%crotl%r"), injective{}()] + symbol LblintRotr{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intRotr"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,23,41,54)"), left{}(), format{}("%crotr%r"), injective{}()] + symbol LblintShl{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShl"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,23,37,52)"), left{}(), format{}("%cshl%r"), injective{}()] + symbol LblintShr'Unds's{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShr_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,23,39,56)"), left{}(), format{}("%cshr_s%r"), injective{}()] + symbol LblintShr'Unds'u{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intShr_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,23,38,56)"), left{}(), format{}("%cshr_u%r"), injective{}()] + symbol LblintSub{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intSub"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,23,28,52)"), left{}(), format{}("%csub%r"), injective{}()] + symbol LblintXor{}() : SortIBinOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/numeric.md)"), symbol'Kywd'{}("intXor"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,23,36,52)"), left{}(), format{}("%cxor%r"), injective{}()] hooked-symbol LblintersectSet'LParUndsCommUndsRParUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("intersectSet"), hook{}("SET.intersection"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(569,18,569,88)"), left{}(), format{}("%cintersectSet%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol Lblis'Hash'Layout{}(SortK{}) : SortBool{} [functional{}(), predicate{}("#Layout"), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cis#Layout%r %c(%r %1 %c)%r"), function{}()] symbol LblisAlignArg{}(SortK{}) : SortBool{} [functional{}(), predicate{}("AlignArg"), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cisAlignArg%r %c(%r %1 %c)%r"), function{}()] @@ -1219,19 +1219,19 @@ module WRC20-LEMMAS hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), klabel{}("lengthBytes"), hook{}("BYTES.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1853,18,1853,99)"), left{}(), format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthString"), hook{}("STRING.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1414,18,1414,84)"), left{}(), format{}("%clengthString%r %c(%r %1 %c)%r"), function{}()] symbol LbllengthValTypes'LParUndsRParUnds'WASM-DATA'Unds'Int'Unds'ValTypes{}(SortValTypes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthValTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(251,20,251,69)"), left{}(), format{}("%clengthValTypes%r %c(%r %1 %c)%r"), function{}()] - symbol LbllimitsMin{}(SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("limitsMin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,23,235,70)"), left{}(), format{}("%c#limitsMin%r %c(%r %1 %c)%r"), injective{}()] - symbol LbllimitsMinMax{}(SortInt{}, SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("limitsMinMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,23,236,70)"), left{}(), format{}("%c#limits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol LbllistInt{}(SortInt{}, SortInts{}) : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllistStmt{}(SortEmptyStmt{}, SortEmptyStmts{}) : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listStmt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllistValTypes{}(SortValType{}, SortValTypes{}) : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("listValTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%1 %c%r %2"), injective{}()] - symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("littleEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1726,25,1726,64)"), left{}(), format{}("%cLE%r"), injective{}()] - symbol LblloadOpLoad{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,24,108,62)"), left{}(), format{}("%cload%r"), injective{}()] - symbol LblloadOpLoad16'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad16_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,24,113,66)"), left{}(), format{}("%cload16_s%r"), injective{}()] - symbol LblloadOpLoad16'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad16_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,24,110,66)"), left{}(), format{}("%cload16_u%r"), injective{}()] - symbol LblloadOpLoad32'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad32_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,24,114,66)"), left{}(), format{}("%cload32_s%r"), injective{}()] - symbol LblloadOpLoad32'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad32_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,24,111,66)"), left{}(), format{}("%cload32_u%r"), injective{}()] - symbol LblloadOpLoad8'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad8_s"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,24,112,65)"), left{}(), format{}("%cload8_s%r"), injective{}()] - symbol LblloadOpLoad8'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("loadOpLoad8_u"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,24,109,65)"), left{}(), format{}("%cload8_u%r"), injective{}()] + symbol LbllimitsMin{}(SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("limitsMin"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(235,23,235,70)"), left{}(), format{}("%c#limitsMin%r %c(%r %1 %c)%r"), injective{}()] + symbol LbllimitsMinMax{}(SortInt{}, SortInt{}) : SortLimits{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("limitsMinMax"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(236,23,236,70)"), left{}(), format{}("%c#limits%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol LbllistInt{}(SortInt{}, SortInts{}) : SortInts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("listInt"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,21,194,59)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllistStmt{}(SortEmptyStmt{}, SortEmptyStmts{}) : SortEmptyStmts{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("listStmt"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,27,57,73)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllistValTypes{}(SortValType{}, SortValTypes{}) : SortValTypes{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("listValTypes"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(97,25,97,72)"), left{}(), format{}("%1 %c%r %2"), injective{}()] + symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("littleEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1726,25,1726,64)"), left{}(), format{}("%cLE%r"), injective{}()] + symbol LblloadOpLoad{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,24,108,62)"), left{}(), format{}("%cload%r"), injective{}()] + symbol LblloadOpLoad16'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad16_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,24,113,66)"), left{}(), format{}("%cload16_s%r"), injective{}()] + symbol LblloadOpLoad16'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad16_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,24,110,66)"), left{}(), format{}("%cload16_u%r"), injective{}()] + symbol LblloadOpLoad32'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad32_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,24,114,66)"), left{}(), format{}("%cload32_s%r"), injective{}()] + symbol LblloadOpLoad32'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad32_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(111,24,111,66)"), left{}(), format{}("%cload32_u%r"), injective{}()] + symbol LblloadOpLoad8'Unds's{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad8_s"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(112,24,112,65)"), left{}(), format{}("%cload8_s%r"), injective{}()] + symbol LblloadOpLoad8'Unds'u{}() : SortLoadOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("loadOpLoad8_u"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(109,24,109,65)"), left{}(), format{}("%cload8_u%r"), injective{}()] symbol Lblload'LBraUndsUndsUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'IValType'Unds'Int'Unds'Int'Unds'Signedness'Unds'Bytes{}(SortIValType{}, SortInt{}, SortInt{}, SortSignedness{}, SortBytes{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("11000001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,22,1003,68)"), left{}(), format{}("%cload%r %c{%r %1 %2 %3 %4 %5 %c}%r"), injective{}()] symbol Lblload'LBraUndsUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'IValType'Unds'Int'Unds'Int'Unds'Signedness{}(SortIValType{}, SortInt{}, SortInt{}, SortSignedness{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("1100001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1002,22,1002,62)"), left{}(), format{}("%cload%r %c{%r %1 %2 %3 %4 %c}%r"), injective{}()] symbol Lbllocal'Stop'get'UndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'PlainInstr'Unds'Index{}(SortIndex{}) : SortPlainInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(98,27,98,43)"), left{}(), format{}("%clocal.get%r %1"), injective{}()] @@ -1251,9 +1251,9 @@ module WRC20-LEMMAS hooked-symbol LblminFloat'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Float'Unds'Float{}(SortFloat{}, SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("fp.min"), right{}(), terminals{}("110101"), klabel{}("minFloat"), hook{}("FLOAT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1304,20,1304,93)"), left{}(), format{}("%cminFloat%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblminInt'LParUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 #2) #1 #2)"), right{}(), terminals{}("110101"), hook{}("INT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(963,18,963,118)"), left{}(), format{}("%cminInt%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblminValueFloat'LParUndsCommUndsRParUnds'FLOAT'Unds'Float'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("minValueFloat"), hook{}("FLOAT.minValue"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,20,1307,105)"), left{}(), format{}("%cminValueFloat%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - symbol LblmoduleMeta{}(SortOptionalId{}, SortMap{}, SortOptionalString{}) : SortModuleMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("moduleMeta"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1382,31,1382,121)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol LblmutConst{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("mutConst"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,53)"), left{}(), format{}("%cconst%r"), injective{}()] - symbol LblmutVar{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("mutVar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,51)"), left{}(), format{}("%cvar%r"), injective{}()] + symbol LblmoduleMeta{}(SortOptionalId{}, SortMap{}, SortOptionalString{}) : SortModuleMetadata{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("moduleMeta"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1382,31,1382,121)"), left{}(), format{}("%c#meta%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol LblmutConst{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("mutConst"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(113,20,113,53)"), left{}(), format{}("%cconst%r"), injective{}()] + symbol LblmutVar{}() : SortMut{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/data.md)"), symbol'Kywd'{}("mutVar"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(114,20,114,51)"), left{}(), format{}("%cvar%r"), injective{}()] hooked-symbol LblnewUUID'Unds'STRING-COMMON'Unds'String{}() : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), impure{}(), hook{}("STRING.uuid"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1566,21,1566,67)"), left{}(), format{}("%cnewUUID%r"), function{}()] symbol LblnoCurFrameCell{}() : SortCurFrameCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("CurFrameCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoCurFrameCell%r"), injective{}()] symbol LblnoCurModIdxCell{}() : SortCurModIdxCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("CurModIdxCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoCurModIdxCell%r"), injective{}()] @@ -1313,7 +1313,7 @@ module WRC20-LEMMAS symbol LblnoTypesCell{}() : SortTypesCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("TypesCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoTypesCell%r"), injective{}()] symbol LblnoValstackCell{}() : SortValstackCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("ValstackCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoValstackCell%r"), injective{}()] symbol LblnoWasmCell{}() : SortWasmCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("WasmCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoWasmCell%r"), injective{}()] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), klabel{}("notBool_"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,176)"), left{}(), format{}("%cnotBool%r %1"), function{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("notBool_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,176)"), left{}(), format{}("%cnotBool%r %1"), function{}()] symbol Lbloffset'EqlsUndsUnds'WASM-TEXT-COMMON-SYNTAX'Unds'OffsetArg'Unds'WasmInt{}(SortWasmInt{}) : SortOffsetArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(110,27,110,43)"), left{}(), format{}("%coffset=%r %1"), injective{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("ordChar"), hook{}("STRING.ord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1424,18,1424,69)"), left{}(), format{}("%cordChar%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblpadLeftBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("padLeftBytes"), hook{}("BYTES.padLeft"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1836,20,1836,95)"), left{}(), format{}("%cpadLeftBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] @@ -1649,17 +1649,17 @@ module WRC20-LEMMAS symbol LblsequenceStmts'LParUndsRParUnds'WASM'Unds'K'Unds'Stmts{}(SortStmts{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sequenceStmts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(274,18,274,53)"), left{}(), format{}("%csequenceStmts%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("signExtendBitRangeInt"), hook{}("INT.signExtendBitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(998,18,998,112)"), left{}(), format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblsignFloat'LParUndsRParUnds'FLOAT'Unds'Bool'Unds'Float{}(SortFloat{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("signFloat"), hook{}("FLOAT.sign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1217,19,1217,80)"), left{}(), format{}("%csignFloat%r %c(%r %1 %c)%r"), function{}()] - symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("signedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1736,25,1736,62)"), left{}(), format{}("%cSigned%r"), injective{}()] + symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("signedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1736,25,1736,62)"), left{}(), format{}("%cSigned%r"), injective{}()] hooked-symbol LblsinFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sinFloat"), hook{}("FLOAT.sin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1296,20,1296,87)"), left{}(), format{}("%csinFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), klabel{}("sizeList"), hook{}("LIST.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(742,18,742,121)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sizeMap"), hook{}("MAP.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(384,18,384,103)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'SET'Unds'Int'Unds'Set{}(SortSet{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("size"), hook{}("SET.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(604,18,604,80)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] symbol LblsqrtFloat'LParUndsRParUnds'FLOAT'Unds'Float'Unds'Float{}(SortFloat{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sqrtFloat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1305,20,1305,58)"), left{}(), format{}("%csqrtFloat%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("srandInt"), hook{}("INT.srand"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1032,16,1032,64)"), left{}(), format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}()] - symbol LblstoreOpStore{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,66)"), left{}(), format{}("%cstore%r"), injective{}()] - symbol LblstoreOpStore16{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore16"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,24,106,66)"), left{}(), format{}("%cstore16%r"), injective{}()] - symbol LblstoreOpStore32{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,24,107,66)"), left{}(), format{}("%cstore32%r"), injective{}()] - symbol LblstoreOpStore8{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("storeOpStore8"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,24,105,66)"), left{}(), format{}("%cstore8%r"), injective{}()] + symbol LblstoreOpStore{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,66)"), left{}(), format{}("%cstore%r"), injective{}()] + symbol LblstoreOpStore16{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore16"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(106,24,106,66)"), left{}(), format{}("%cstore16%r"), injective{}()] + symbol LblstoreOpStore32{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore32"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,24,107,66)"), left{}(), format{}("%cstore32%r"), injective{}()] + symbol LblstoreOpStore8{}() : SortStoreOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), symbol'Kywd'{}("storeOpStore8"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(105,24,105,66)"), left{}(), format{}("%cstore8%r"), injective{}()] symbol Lblstore'LBraUndsUndsUndsRBraUnds'WASM'Unds'Instr'Unds'Int'Unds'Int'Unds'Number{}(SortInt{}, SortInt{}, SortNumber{}) : SortInstr{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm.md)"), priorities{}(), right{}(), terminals{}("110001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,22,955,51)"), left{}(), format{}("%cstore%r %c{%r %1 %2 %3 %c}%r"), injective{}()] symbol LblstructureModule'LParUndsCommUndsRParUnds'WASM-TEXT'Unds'ModuleDecl'Unds'Defns'Unds'OptionalId{}(SortDefns{}, SortOptionalId{}) : SortModuleDecl{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("structureModule"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(656,28,656,76)"), left{}(), format{}("%cstructureModule%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblstructureModules'LParUndsRParUnds'WASM-TEXT'Unds'Stmts'Unds'Stmts{}(SortStmts{}) : SortStmts{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("structureModules"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(650,22,650,58)"), left{}(), format{}("%cstructureModules%r %c(%r %1 %c)%r"), function{}()] @@ -1679,11 +1679,11 @@ module WRC20-LEMMAS symbol LblunfoldDefns'LParUndsRParUnds'WASM-TEXT'Unds'Defns'Unds'Defns{}(SortDefns{}) : SortDefns{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldDefns"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(392,22,392,71)"), left{}(), format{}("%cunfoldDefns%r %c(%r %1 %c)%r"), function{}()] symbol LblunfoldInstrs'LParUndsRParUnds'WASM-TEXT'Unds'Instrs'Unds'Instrs{}(SortInstrs{}) : SortInstrs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldInstrs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,24,558,67)"), left{}(), format{}("%cunfoldInstrs%r %c(%r %1 %c)%r"), function{}()] symbol LblunfoldStmts'LParUndsRParUnds'WASM-TEXT'Unds'Stmts'Unds'Stmts{}(SortStmts{}) : SortStmts{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(wasm-semantics/wasm-text.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unfoldStmts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(391,22,391,71)"), left{}(), format{}("%cunfoldStmts%r %c(%r %1 %c)%r"), function{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("unsignedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1737,25,1737,66)"), left{}(), format{}("%cUnsigned%r"), injective{}()] + symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("unsignedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1737,25,1737,66)"), left{}(), format{}("%cUnsigned%r"), injective{}()] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("updateList"), hook{}("LIST.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,19,706,96)"), left{}(), format{}("%cupdateList%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("updateMap"), hook{}("MAP.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(335,18,335,91)"), left{}(), format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("values"), hook{}("MAP.values"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(376,19,376,76)"), left{}(), format{}("%cvalues%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), klabel{}("~Int_"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,18,931,172)"), left{}(), format{}("%c~Int%r %1"), function{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/usr/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("~Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(931,18,931,172)"), left{}(), format{}("%c~Int%r %1"), function{}()] // generated axioms axiom{R} \exists{R} (Val:SortNumber{}, \equals{SortNumber{}, R} (Val:SortNumber{}, inj{SortInt{}, SortNumber{}} (From:SortInt{}))) [subsort{SortInt{}, SortNumber{}}()] // subsort diff --git a/test/rpc-server/add-module/add/definition.kore b/test/rpc-server/add-module/add/definition.kore index 3ae9d4f3ce..1346fe2ced 100644 --- a/test/rpc-server/add-module/add/definition.kore +++ b/test/rpc-server/add-module/add/definition.kore @@ -83,33 +83,33 @@ module TEST hooked-sort SortBool{} [hook{}("BOOL.Bool"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(878,3,878,32)"), hasDomainValues{}()] // symbols - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(747,19,747,142)"), left{}(), format{}("%c.List%r"), function{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), left{}(), format{}("%c.Map%r"), function{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,118)"), left{}(), format{}("%c.Set%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(747,19,747,142)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), left{}(), format{}("%c.Map%r"), function{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,118)"), left{}(), format{}("%c.Set%r"), function{}()] symbol Lbl'-LT-'generatedCounter'-GT-'{}(SortInt{}) : SortGeneratedCounterCell{} [functional{}(), constructor{}(), cellName{}("generatedCounter"), priorities{}(), right{}(), terminals{}("101"), left{}(), format{}("%c%r%i%n%1%d%n%c%r"), injective{}(), cell{}()] symbol Lbl'-LT-'generatedTop'-GT-'{}(SortKCell{}, SortGeneratedCounterCell{}) : SortGeneratedTopCell{} [functional{}(), constructor{}(), cellName{}("generatedTop"), priorities{}(), right{}(), terminals{}("1001"), left{}(), format{}("%1"), injective{}(), cell{}(), topcell{}()] symbol Lbl'-LT-'generatedTop'-GT-'-fragment{}(SortKCellOpt{}, SortGeneratedCounterCellOpt{}) : SortGeneratedTopCellFragment{} [functional{}(), constructor{}(), cellFragment{}("GeneratedTopCell"), priorities{}(), right{}(), terminals{}("1001"), left{}(), format{}("%c-fragment%r %1 %2 %c-fragment%r"), injective{}()] symbol Lbl'-LT-'k'-GT-'{}(SortK{}) : SortKCell{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/jost/work/RV/code/hs-backend-booster/test/rpc-integration/resources/module-addition/test.k)"), cellName{}("k"), maincell{}(), priorities{}(), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(9,17,9,42)"), left{}(), format{}("%c%r%i%n%1%d%n%c%r"), injective{}(), cell{}(), topcell{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(766,20,766,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(813,19,813,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(755,19,755,132)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,142)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,119)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(766,20,766,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(813,19,813,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(755,19,755,132)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,142)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,119)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,87)"), left{}(), format{}("%1 %c<=Map%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(596,19,596,81)"), left{}(), format{}("%1 %c<=Set%r %2"), function{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,19,739,188)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,165)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,19,739,188)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,165)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(775,19,775,108)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,97)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), total{}(), comm{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,18,558,92)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] hooked-symbol Lblchoice'LParUndsRParUnds'MAP'Unds'KItem'Unds'Map{}(SortMap{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Map:choice"), hook{}("MAP.choice"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(393,20,393,101)"), left{}(), format{}("%cchoice%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblchoice'LParUndsRParUnds'SET'Unds'KItem'Unds'Set{}(SortSet{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/sxlm4w731fhxy1cihwbv2flwd6xb90im-k-5.5.86-e25a8597d787d6b22eae989c85d9d0262b0539fd-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Set:choice"), hook{}("SET.choice"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(614,20,614,95)"), left{}(), format{}("%cchoice%r %c(%r %1 %c)%r"), function{}()] diff --git a/test/rpc-server/execute/branching/definition.kore b/test/rpc-server/execute/branching/definition.kore index 859cd570d2..c69e777523 100644 --- a/test/rpc-server/execute/branching/definition.kore +++ b/test/rpc-server/execute/branching/definition.kore @@ -89,9 +89,9 @@ module TEST // symbols hooked-symbol Lbl'Hash'if'UndsHash'then'UndsHash'else'UndsHash'fi'Unds'K-EQUAL-SYNTAX'Unds'Sort'Unds'Bool'Unds'Sort'Unds'Sort{SortSort}(SortBool{}, SortSort, SortSort) : SortSort [format{}("%c#if%r %1 %c#then%r %2 %c#else%r %3 %c#fi%r"), function{}(), functional{}(), hook{}("KEQUAL.ite"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2277,26,2277,121)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("ite"), terminals{}("1010101"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'-LT-'T'-GT-'{}(SortKCell{}, SortValCell{}) : SortTCell{} [cell{}(), cellName{}("T"), constructor{}(), format{}("%c%r%i%n%1%n%2%d%n%c%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(12,17,15,21)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/test/rpc-server/resources/a-to-f/test.k)"), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), priorities{}(), right{}(), terminals{}("1001")] symbol Lbl'-LT-'T'-GT-'-fragment{}(SortKCellOpt{}, SortValCellOpt{}) : SortTCellFragment{} [cellFragment{}("TCell"), constructor{}(), format{}("%c-fragment%r %1 %2 %c-fragment%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1001")] symbol Lbl'-LT-'generatedCounter'-GT-'{}(SortInt{}) : SortGeneratedCounterCell{} [cell{}(), cellName{}("generatedCounter"), constructor{}(), format{}("%c%r%i%n%1%d%n%c%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("101")] @@ -99,57 +99,57 @@ module TEST symbol Lbl'-LT-'generatedTop'-GT-'-fragment{}(SortTCellOpt{}, SortGeneratedCounterCellOpt{}) : SortGeneratedTopCellFragment{} [cellFragment{}("GeneratedTopCell"), constructor{}(), format{}("%c-fragment%r %1 %2 %c-fragment%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1001")] symbol Lbl'-LT-'k'-GT-'{}(SortK{}) : SortKCell{} [cell{}(), cellName{}("k"), constructor{}(), format{}("%c%r%i%n%1%d%n%c%r"), functional{}(), injective{}(), left{}(), maincell{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,19,13,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/test/rpc-server/resources/a-to-f/test.k)"), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), priorities{}(), right{}(), terminals{}("101")] symbol Lbl'-LT-'val'-GT-'{}(SortInt{}) : SortValCell{} [cell{}(), cellName{}("val"), constructor{}(), format{}("%c%r%i%n%1%d%n%c%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,19,14,33)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/test/rpc-server/resources/a-to-f/test.k)"), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), priorities{}(), right{}(), terminals{}("101")] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds-LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cxorBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.xor"), klabel{}("_xorBool_"), left{}(Lbl'Unds'xorBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1103,19,1103,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("xor"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %cxorInt%r %2"), function{}(), functional{}(), hook{}("INT.xor"), klabel{}("_xorInt_"), latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'xorInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,18,1250,190)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cxorBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.xor"), left{}(Lbl'Unds'xorBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1103,19,1103,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("xor"), symbol'Kywd'{}("_xorBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %cxorInt%r %2"), function{}(), functional{}(), hook{}("INT.xor"), latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'xorInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,18,1250,190)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), symbol'Kywd'{}("_xorInt_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] @@ -194,7 +194,7 @@ module TEST symbol LblnoKCell{}() : SortKCellOpt{} [cellOptAbsent{}("KCell"), constructor{}(), format{}("%cnoKCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoTCell{}() : SortTCellOpt{} [cellOptAbsent{}("TCell"), constructor{}(), format{}("%cnoTCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoValCell{}() : SortValCellOpt{} [cellOptAbsent{}("ValCell"), constructor{}(), format{}("%cnoValCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] symbol Lblproject'Coln'Bool{}(SortK{}) : SortBool{} [format{}("%cproject:Bool%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), projection{}(), right{}(), terminals{}("1101")] symbol Lblproject'Coln'GeneratedCounterCell{}(SortK{}) : SortGeneratedCounterCell{} [format{}("%cproject:GeneratedCounterCell%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), projection{}(), right{}(), terminals{}("1101")] symbol Lblproject'Coln'GeneratedCounterCellOpt{}(SortK{}) : SortGeneratedCounterCellOpt{} [format{}("%cproject:GeneratedCounterCellOpt%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), projection{}(), right{}(), terminals{}("1101")] @@ -224,7 +224,7 @@ module TEST hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j993pnk64sgpw2qm7408ixnagfkknjzd-k-6.0.181-af105e4141030abe25055854fc02205be4ed223c-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] // generated axioms axiom{R} \exists{R} (Val:SortValCellOpt{}, \equals{SortValCellOpt{}, R} (Val:SortValCellOpt{}, inj{SortValCell{}, SortValCellOpt{}} (From:SortValCell{}))) [subsort{SortValCell{}, SortValCellOpt{}}()] // subsort diff --git a/test/rpc-server/execute/vacuous/definition.kore b/test/rpc-server/execute/vacuous/definition.kore index f05dcec22f..2cbc2eea2c 100644 --- a/test/rpc-server/execute/vacuous/definition.kore +++ b/test/rpc-server/execute/vacuous/definition.kore @@ -89,9 +89,9 @@ module TEST // symbols symbol Lbl'Hash'assume'LParUndsRParUnds'TEST'Unds'KItem'Unds'Bool{}(SortBool{}) : SortKItem{} [constructor{}(), format{}("%c#assume%r %c(%r %1 %c)%r"), functional{}(), injective{}(), klabel{}("#assume"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,22,21,38)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/sam/git/haskell-backend/test5/test.k)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol Lbl'Hash'if'UndsHash'then'UndsHash'else'UndsHash'fi'Unds'K-EQUAL-SYNTAX'Unds'Sort'Unds'Bool'Unds'Sort'Unds'Sort{SortSort}(SortBool{}, SortSort, SortSort) : SortSort [format{}("%c#if%r %1 %c#then%r %2 %c#else%r %3 %c#fi%r"), function{}(), functional{}(), hook{}("KEQUAL.ite"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2262,26,2262,121)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("ite"), terminals{}("1010101"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'-LT-'example'-GT-'{}(SortKCell{}) : SortExampleCell{} [cell{}(), cellName{}("example"), constructor{}(), format{}("%c%r%i%n%1%d%n%c%r"), functional{}(), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,5,19,15)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/Users/sam/git/haskell-backend/test5/test.k)"), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), priorities{}(), right{}(), terminals{}("101"), topcell{}()] symbol Lbl'-LT-'example'-GT-'-fragment{}(SortKCellOpt{}) : SortExampleCellFragment{} [cellFragment{}("ExampleCell"), constructor{}(), format{}("%c-fragment%r %1 %c-fragment%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("101")] symbol Lbl'-LT-'generatedCounter'-GT-'{}(SortInt{}) : SortGeneratedCounterCell{} [cell{}(), cellName{}("generatedCounter"), constructor{}(), format{}("%c%r%i%n%1%d%n%c%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("101")] @@ -103,68 +103,68 @@ module TEST hooked-symbol LblFloat2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float{}(SortFloat{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.float2string"), klabel{}("Float2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1789,21,1789,101)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.floatFormat"), klabel{}("FloatFormat"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1790,21,1790,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("STRING.int2string"), klabel{}("Int2String"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1811,21,1811,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), total{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] hooked-symbol LblString2Base'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'Int{}(SortString{}, SortInt{}) : SortInt{} [format{}("%cString2Base%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), hook{}("STRING.string2base"), klabel{}("String2Base"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1813,21,1813,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101")] symbol LblString2Bool'LParUndsRParUnds'STRING-COMMON'Unds'Bool'Unds'String{}(SortString{}) : SortBool{} [format{}("%cString2Bool%r %c(%r %1 %c)%r"), function{}(), klabel{}("String2Bool"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1768,19,1768,49)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblString2Float'LParUndsRParUnds'STRING-COMMON'Unds'Float'Unds'String{}(SortString{}) : SortFloat{} [format{}("%cString2Float%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.string2float"), klabel{}("String2Float"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1791,21,1791,94)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.string2int"), klabel{}("String2Int"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,21,1810,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [format{}("%1 %c+String%r %2"), function{}(), functional{}(), hook{}("STRING.concat"), latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1701,21,1701,135)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>=String%r %2"), function{}(), functional{}(), hook{}("STRING.ge"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1848,19,1848,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [format{}("%1 %c>String%r %2"), function{}(), functional{}(), hook{}("STRING.gt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1847,19,1847,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cxorBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.xor"), klabel{}("_xorBool_"), left{}(Lbl'Unds'xorBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1103,19,1103,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("xor"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %cxorInt%r %2"), function{}(), functional{}(), hook{}("INT.xor"), klabel{}("_xorInt_"), latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'xorInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,18,1250,190)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [format{}("%1 %cxorBool%r %2"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.xor"), left{}(Lbl'Unds'xorBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1103,19,1103,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("xor"), symbol'Kywd'{}("_xorBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %cxorInt%r %2"), function{}(), functional{}(), hook{}("INT.xor"), latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'xorInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,18,1250,190)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), symbol'Kywd'{}("_xorInt_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] @@ -214,7 +214,7 @@ module TEST symbol LblnoExampleCell{}() : SortExampleCellOpt{} [cellOptAbsent{}("ExampleCell"), constructor{}(), format{}("%cnoExampleCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoGeneratedCounterCell{}() : SortGeneratedCounterCellOpt{} [cellOptAbsent{}("GeneratedCounterCell"), constructor{}(), format{}("%cnoGeneratedCounterCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoKCell{}() : SortKCellOpt{} [cellOptAbsent{}("KCell"), constructor{}(), format{}("%cnoKCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [format{}("%cnotBool%r %1"), function{}(), functional{}(), group{}("boolOperation"), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [format{}("%cordChar%r %c(%r %1 %c)%r"), function{}(), hook{}("STRING.ord"), klabel{}("ordChar"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1719,18,1719,70)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol Lblproject'Coln'Bool{}(SortK{}) : SortBool{} [format{}("%cproject:Bool%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), projection{}(), right{}(), terminals{}("1101")] symbol Lblproject'Coln'ExampleCell{}(SortK{}) : SortExampleCell{} [format{}("%cproject:ExampleCell%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), projection{}(), right{}(), terminals{}("1101")] @@ -250,7 +250,7 @@ module TEST hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/dfls32j4xvx7ivsywxspbi854n8mblj2-k-6.0.45-065e2da4f060125efe7bc355bcd8d9f9b423d186-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] // generated axioms axiom{R} \exists{R} (Val:SortKItem{}, \equals{SortKItem{}, R} (Val:SortKItem{}, inj{SortString{}, SortKItem{}} (From:SortString{}))) [subsort{SortString{}, SortKItem{}}()] // subsort diff --git a/test/rpc-server/execute/zero-steps/definition.kore b/test/rpc-server/execute/zero-steps/definition.kore index 0250a301f2..7691a575ec 100644 --- a/test/rpc-server/execute/zero-steps/definition.kore +++ b/test/rpc-server/execute/zero-steps/definition.kore @@ -120,9 +120,9 @@ module TEST symbol Lbl'Hash'freezer'UndsPipePipeUndsUnds'TEST-SYNTAX'Unds'BExp'Unds'BExp'Unds'BExp1'Unds'{}(SortK{}) : SortKItem{} [functional{}(), constructor{}(), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%c#freezer_||__TEST-SYNTAX_BExp_BExp_BExp1_%r %c(%r %1 %c)%r"), injective{}()] symbol Lbl'Hash'freezerif'LParUndsRParUnds'else'UndsUnds'TEST-SYNTAX'Unds'Stmt'Unds'BExp'Unds'Stmt'Unds'Stmt0'Unds'{}(SortK{}, SortK{}) : SortKItem{} [functional{}(), constructor{}(), priorities{}(), right{}(), terminals{}("110101"), left{}(), format{}("%c#freezerif(_)_else__TEST-SYNTAX_Stmt_BExp_Stmt_Stmt0_%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] hooked-symbol Lbl'Hash'if'UndsHash'then'UndsHash'else'UndsHash'fi'Unds'K-EQUAL-SYNTAX'Unds'Sort'Unds'Bool'Unds'Sort'Unds'Sort{SortSort}(SortBool{}, SortSort, SortSort) : SortSort [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("ite"), right{}(), terminals{}("1010101"), hook{}("KEQUAL.ite"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2092,26,2092,126)"), left{}(), format{}("%c#if%r %1 %c#then%r %2 %c#else%r %3 %c#fi%r"), function{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(653,19,653,147)"), left{}(), format{}("%c.List%r"), function{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,129)"), left{}(), format{}("%c.Map%r"), function{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(533,18,533,123)"), left{}(), format{}("%c.Set%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(653,19,653,147)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,129)"), left{}(), format{}("%c.Map%r"), function{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(533,18,533,123)"), left{}(), format{}("%c.Set%r"), function{}()] symbol Lbl'-LT-'generatedCounter'-GT-'{}(SortInt{}) : SortGeneratedCounterCell{} [functional{}(), constructor{}(), cellName{}("generatedCounter"), priorities{}(), right{}(), terminals{}("101"), left{}(), format{}("%c%r%i%n%1%d%n%c%r"), injective{}(), cell{}(), topcell{}()] symbol Lbl'-LT-'generatedTop'-GT-'{}(SortKCell{}, SortGeneratedCounterCell{}, SortStoreCell{}) : SortGeneratedTopCell{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), cellName{}("generatedTop"), priorities{}(), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), right{}(), terminals{}("10001"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,7,58,28)"), left{}(), format{}("%c%r%i%n%1%n%3%d%n%c%r"), injective{}(), cell{}(), topcell{}()] symbol Lbl'-LT-'generatedTop'-GT-'-fragment{}(SortKCellOpt{}, SortStoreCellOpt{}) : SortGeneratedTopCellFragment{} [functional{}(), constructor{}(), cellFragment{}("GeneratedTopCell"), priorities{}(), right{}(), terminals{}("1001"), left{}(), format{}("%c-fragment%r %1 %2 %c-fragment%r"), injective{}()] @@ -134,83 +134,83 @@ module TEST hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("FloatFormat"), hook{}("STRING.floatFormat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1517,21,1517,122)"), left{}(), format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblId2String'LParUndsRParUnds'ID-COMMON'Unds'String'Unds'Id{}(SortId{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Id2String"), hook{}("STRING.token2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2048,21,2048,90)"), left{}(), format{}("%cId2String%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Int2String"), hook{}("STRING.int2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1538,21,1538,104)"), left{}(), format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(672,20,672,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(719,19,719,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(661,19,661,137)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,145)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(573,18,573,147)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(581,19,581,107)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(541,18,541,124)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(672,20,672,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(719,19,719,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(661,19,661,137)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,145)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(573,18,573,147)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(581,19,581,107)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(541,18,541,124)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] hooked-symbol LblString2Base'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'Int{}(SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("String2Base"), hook{}("STRING.string2base"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1540,21,1540,99)"), left{}(), format{}("%cString2Base%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblString2Bool'LParUndsRParUnds'STRING-COMMON'Unds'Bool'Unds'String{}(SortString{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1495,19,1495,49)"), left{}(), format{}("%cString2Bool%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Float'LParUndsRParUnds'STRING-COMMON'Unds'Float'Unds'String{}(SortString{}) : SortFloat{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Float"), hook{}("STRING.string2float"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1518,21,1518,94)"), left{}(), format{}("%cString2Float%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Id'LParUndsRParUnds'ID-COMMON'Unds'Id'Unds'String{}(SortString{}) : SortId{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Id"), hook{}("STRING.string2token"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2049,17,2049,85)"), left{}(), format{}("%cString2Id%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Int"), hook{}("STRING.string2int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1537,21,1537,92)"), left{}(), format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}()] symbol Lbl'UndsBangEqlsUndsUnds'TEST-SYNTAX'Unds'BExp'Unds'IExp'Unds'IExp{}(SortIExp{}, SortIExp{}) : SortBExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(28,21,28,47)"), left{}(), format{}("%1 %c!=%r %2"), injective{}(), seqstrict{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_%Int_"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,171)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_%Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,18,953,171)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] symbol Lbl'UndsAnd-And-UndsUnds'TEST-SYNTAX'Unds'BExp'Unds'BExp'Unds'BExp{}(SortBExp{}, SortBExp{}) : SortBExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,21,30,47)"), left{}(), format{}("%1 %c&&%r %2"), injective{}(), seqstrict{}()] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), klabel{}("_&Int_"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(964,18,964,183)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), klabel{}("_*Int_"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(949,18,949,182)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_&Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(964,18,964,183)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_*Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(949,18,949,182)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] symbol Lbl'UndsStarUndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}(SortIExp{}, SortIExp{}) : SortIExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(Lbl'UndsPlusUndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}(),Lbl'Unds'-'UndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}()), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(13,21,13,46)"), left{}(), format{}("%1 %c*%r %2"), injective{}(), seqstrict{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), klabel{}("_+Int_"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(958,18,958,179)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_+Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(958,18,958,179)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1428,21,1428,140)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), format{}("%1 %c+String%r %2"), function{}()] symbol Lbl'UndsPlusUndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}(SortIExp{}, SortIExp{}) : SortIExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,21,15,46)"), left{}(), format{}("%1 %c+%r %2"), injective{}(), seqstrict{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), klabel{}("_-Int_"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(959,18,959,179)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_-Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(959,18,959,179)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,121)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] symbol Lbl'Unds'-'UndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}(SortIExp{}, SortIExp{}) : SortIExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(16,21,16,46)"), left{}(), format{}("%1 %c-%r %2"), injective{}(), seqstrict{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_/Int_"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,18,952,173)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_/Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(952,18,952,173)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] symbol Lbl'UndsSlshUndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}(SortIExp{}, SortIExp{}) : SortIExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(Lbl'UndsPlusUndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}(),Lbl'Unds'-'UndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}()), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(14,21,14,46)"), left{}(), format{}("%1 %c/%r %2"), injective{}(), seqstrict{}()] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ll_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shlInt"), terminals{}("010"), klabel{}("_<="), right{}(), terminals{}("010"), klabel{}("_>=Int_"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,19,1022,177)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>=Int_"), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1022,19,1022,177)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1575,19,1575,83)"), left{}(), format{}("%1 %c>=String%r %2"), function{}()] symbol Lbl'Unds-GT-EqlsUndsUnds'TEST-SYNTAX'Unds'BExp'Unds'IExp'Unds'IExp{}(SortIExp{}, SortIExp{}) : SortBExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,21,25,47)"), left{}(), format{}("%1 %c>=%r %2"), injective{}(), seqstrict{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), klabel{}("_>>Int_"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(961,18,961,173)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), klabel{}("_>Int_"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1023,19,1023,172)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>>Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(961,18,961,173)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>Int_"), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1023,19,1023,172)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1574,19,1574,83)"), left{}(), format{}("%1 %c>String%r %2"), function{}()] symbol Lbl'Unds-GT-UndsUnds'TEST-SYNTAX'Unds'BExp'Unds'IExp'Unds'IExp{}(SortIExp{}, SortIExp{}) : SortBExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,21,26,47)"), left{}(), format{}("%1 %c>%r %2"), injective{}(), seqstrict{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(645,19,645,193)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(525,18,525,177)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(645,19,645,193)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(525,18,525,177)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(681,19,681,108)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,122)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,122)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,139)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), klabel{}("_^%Int__"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(947,18,947,139)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), klabel{}("_^Int_"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^%Int__"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(947,18,947,139)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(946,18,946,178)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] symbol Lbl'UndsXor-UndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}(SortIExp{}, SortIExp{}) : SortIExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(Lbl'UndsPlusUndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}(),Lbl'Unds'-'UndsUnds'TEST-SYNTAX'Unds'IExp'Unds'IExp'Unds'IExp{}()), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(12,21,12,46)"), left{}(), format{}("%1 %c^%r %2"), injective{}(), seqstrict{}()] symbol Lbl'UndsUndsUnds'TEST-SYNTAX'Unds'Stmt'Unds'Stmt'Unds'Stmt{}(SortStmt{}, SortStmt{}) : SortStmt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,9,41,50)"), left{}(Lbl'UndsUndsUnds'TEST-SYNTAX'Unds'Stmt'Unds'Stmt'Unds'Stmt{}()), format{}("%1 %2"), injective{}()] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andBool_"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(817,19,817,190)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andThenBool_"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(818,19,818,152)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_divInt_"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,122)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(817,19,817,190)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_andThenBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(818,19,818,152)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_divInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,18,955,122)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1034,19,1034,53)"), left{}(), format{}("%1 %cdividesInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_impliesBool_"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,151)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_impliesBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,151)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(728,19,728,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,94)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_modInt_"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,18,956,122)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orBool_"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(820,19,820,185)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orElseBool_"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,19,821,149)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_xorBool_"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(819,19,819,144)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), klabel{}("_xorInt_"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(966,18,966,189)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,156)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), klabel{}("_|Int_"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(968,18,968,180)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_modInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,18,956,122)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(820,19,820,185)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_orElseBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(821,19,821,149)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("xor"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(819,19,819,144)"), left{}(Lbl'Unds'xorBool'Unds'{}()), format{}("%1 %cxorBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_xorInt_"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), terminals{}("010"), hook{}("INT.xor"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(966,18,966,189)"), left{}(Lbl'Unds'xorInt'Unds'{}()), format{}("%1 %cxorInt%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,156)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|Int_"), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(968,18,968,180)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(552,18,552,89)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] symbol Lbl'UndsPipePipeUndsUnds'TEST-SYNTAX'Unds'BExp'Unds'BExp'Unds'BExp{}(SortBExp{}, SortBExp{}) : SortBExp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(31,21,31,47)"), left{}(), format{}("%1 %c||%r %2"), injective{}(), seqstrict{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), right{}(), terminals{}("1101"), klabel{}("absInt"), hook{}("INT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(985,18,985,124)"), left{}(), format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}()] @@ -266,7 +266,7 @@ module TEST hooked-symbol LblnewUUID'Unds'STRING-COMMON'Unds'String{}() : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1"), impure{}(), hook{}("STRING.uuid"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1588,21,1588,68)"), left{}(), format{}("%cnewUUID%r"), function{}()] symbol LblnoKCell{}() : SortKCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("KCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoKCell%r"), injective{}()] symbol LblnoStoreCell{}() : SortStoreCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("StoreCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoStoreCell%r"), injective{}()] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), klabel{}("notBool_"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(816,19,816,177)"), left{}(), format{}("%cnotBool%r %1"), function{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("notBool_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(816,19,816,177)"), left{}(), format{}("%cnotBool%r %1"), function{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("ordChar"), hook{}("STRING.ord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1446,18,1446,70)"), left{}(), format{}("%cordChar%r %c(%r %1 %c)%r"), function{}()] symbol Lblproject'Coln'BExp{}(SortK{}) : SortBExp{} [priorities{}(), right{}(), terminals{}("1101"), projection{}(), left{}(), format{}("%cproject:BExp%r %c(%r %1 %c)%r"), function{}()] symbol Lblproject'Coln'Bool{}(SortK{}) : SortBool{} [priorities{}(), right{}(), terminals{}("1101"), projection{}(), left{}(), format{}("%cproject:Bool%r %c(%r %1 %c)%r"), function{}()] @@ -309,7 +309,7 @@ module TEST symbol Lblwhile'LParUndsRParUndsUnds'TEST-SYNTAX'Unds'Stmt'Unds'BExp'Unds'Stmt{}(SortBExp{}, SortStmt{}) : SortStmt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("11010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,9,45,34)"), left{}(), format{}("%cwhile%r %c(%r %1 %c)%r %2"), injective{}()] symbol Lbl'LBraUndsRBraUnds'TEST-SYNTAX'Unds'Stmt'Unds'Stmt{}(SortStmt{}) : SortStmt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,9,42,21)"), left{}(), format{}("%c{%r %1 %c}%r"), injective{}()] symbol Lbl'LBraRBraUnds'TEST-SYNTAX'Unds'Stmt{}() : SortStmt{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sam/git/haskell-backend/rpc_tests/test.k)"), priorities{}(), right{}(), terminals{}("11"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,9,43,21)"), left{}(), format{}("%c{%r %c}%r"), injective{}()] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), klabel{}("~Int_"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(944,18,944,173)"), left{}(), format{}("%c~Int%r %1"), function{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/ammyi79fv13y6jhdc58ywq199g4qsb2f-k-5.3.0-ff5dcc3b56e055c6ca22f68bd994c77c9563743f-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("~Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(944,18,944,173)"), left{}(), format{}("%c~Int%r %1"), function{}()] // generated axioms axiom{R} \exists{R} (Val:SortKItem{}, \equals{SortKItem{}, R} (Val:SortKItem{}, inj{SortStoreCellOpt{}, SortKItem{}} (From:SortStoreCellOpt{}))) [subsort{SortStoreCellOpt{}, SortKItem{}}()] // subsort diff --git a/test/rpc-server/implies/refuse-macro-and-alias/definition.kore b/test/rpc-server/implies/refuse-macro-and-alias/definition.kore index c2f19d25fb..84b5c0252b 100644 --- a/test/rpc-server/implies/refuse-macro-and-alias/definition.kore +++ b/test/rpc-server/implies/refuse-macro-and-alias/definition.kore @@ -583,8 +583,8 @@ module TEST symbol Lbl'Hash'asInteger'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'ByteArray{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#asInteger"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(384,20,384,62)"), left{}(), format{}("%c#asInteger%r %c(%r %1 %c)%r"), function{}()] symbol Lbl'Hash'asWord'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'ByteArray{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), smtlib{}("asWord"), terminals{}("1101"), klabel{}("#asWord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(380,20,380,75)"), left{}(), format{}("%c#asWord%r %c(%r %1 %c)%r"), function{}()] symbol Lbl'Hash'asmTxPrefix'LParUndsRParUnds'EVM-TYPES'Unds'TxType'Unds'Int{}(SortInt{}) : SortTxType{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#asmTxPrefix"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(494,23,494,54)"), left{}(), format{}("%c#asmTxPrefix%r %c(%r %1 %c)%r"), function{}()] - symbol Lbl'Hash'blockHashHeaderBaseFeeStr{}(SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101010101010101010101"), klabel{}("#blockHashHeaderBaseFeeStr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,219)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}()] - symbol Lbl'Hash'blockHashHeaderStr{}(SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101010101010101010101"), klabel{}("#blockHashHeaderStr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,204)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}()] + symbol Lbl'Hash'blockHashHeaderBaseFeeStr{}(SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}("#blockHashHeaderBaseFeeStr"), priorities{}(), right{}(), terminals{}("1101010101010101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,20,67,219)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}()] + symbol Lbl'Hash'blockHashHeaderStr{}(SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}, SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}("#blockHashHeaderStr"), priorities{}(), right{}(), terminals{}("11010101010101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,20,65,204)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}()] symbol Lbl'Hash'blockhash'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'List'Unds'Int'Unds'Int'Unds'Int{}(SortList{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("#blockhash"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1013,20,1013,68)"), left{}(), format{}("%c#blockhash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] symbol Lbl'Hash'bloomFilter'LParUndsRParUnds'EVM'Unds'ByteArray'Unds'List{}(SortList{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("#bloomFilter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(687,26,687,60)"), left{}(), format{}("%c#bloomFilter%r %c(%r %1 %c)%r"), function{}()] symbol Lbl'Hash'bloomFilter'LParUndsCommUndsRParUnds'EVM'Unds'ByteArray'Unds'List'Unds'Int{}(SortList{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("#bloomFilterAux"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(688,26,688,85)"), left{}(), format{}("%c#bloomFilter%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -851,18 +851,18 @@ module TEST symbol Lbl'Stop'Account'Unds'EVM-TYPES'Unds'Account{}() : SortAccount{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(431,24,431,34)"), left{}(), format{}("%c.Account%r"), injective{}()] symbol Lbl'Stop'ByteArray'Unds'EVM-TYPES'Unds'ByteArray{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(376,26,376,46)"), left{}(), format{}("%c.ByteArray%r"), injective{}()] hooked-symbol Lbl'Stop'Bytes'Unds'BYTES-HOOKED'Unds'Bytes{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1"), hook{}("BYTES.empty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1833,20,1833,65)"), left{}(), format{}("%c.Bytes%r"), function{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(747,19,747,142)"), left{}(), format{}("%c.List%r"), function{}()] - symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"JSONs\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), left{}(), format{}("%c.JSONs%r"), injective{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(747,19,747,142)"), left{}(), format{}("%c.List%r"), function{}()] + symbol Lbl'Stop'List'LBraQuot'JSONs'QuotRBraUnds'JSONs{}() : SortJSONs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(".List{\"JSONs\"}"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), left{}(), format{}("%c.JSONs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs'QuotRBraUnds'EventArgs{}() : SortEventArgs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"eventArgs\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(425,26,425,65)"), left{}(), format{}("%c.EventArgs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs'QuotRBraUnds'TypedArgs{}() : SortTypedArgs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}(".List{\"typedArgs\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,26,77,65)"), left{}(), format{}("%c.TypedArgs%r"), injective{}()] symbol Lbl'Stop'List'LBraQuotUndsUndsUnds'HASHED-LOCATIONS'Unds'IntList'Unds'Int'Unds'IntList'QuotRBraUnds'IntList{}() : SortIntList{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/hashed-locations.md)"), priorities{}(), right{}(), smtlib{}("intList"), terminals{}("1"), klabel{}(".List{\"intList\"}"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,24,66,72)"), left{}(), format{}("%c.IntList%r"), injective{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), left{}(), format{}("%c.Map%r"), function{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), left{}(), format{}("%c.Map%r"), function{}()] symbol Lbl'Stop'Memory'Unds'EVM-TYPES'Unds'Memory{}() : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(350,23,350,40)"), left{}(), format{}("%c.Memory%r"), injective{}()] symbol Lbl'Stop'MerkleTree'Unds'SERIALIZATION'Unds'MerkleTree{}() : SortMerkleTree{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,27,440,40)"), left{}(), format{}("%c.MerkleTree%r"), injective{}()] hooked-symbol Lbl'Stop'MessageCellMap{}() : SortMessageCellMap{} [priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), left{}(), format{}("%c.MessageCellMap%r"), function{}()] symbol Lbl'Stop'NoOpCode'Unds'EVM'Unds'MaybeOpCode{}() : SortMaybeOpCode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,28,281,39)"), left{}(), format{}("%c.NoOpCode%r"), injective{}()] symbol Lbl'Stop'OpcodeType'Unds'FOUNDRY-CHEAT-CODES'Unds'OpcodeType{}() : SortOpcodeType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/foundry.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(611,27,611,40)"), left{}(), format{}("%c.OpcodeType%r"), injective{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,118)"), left{}(), format{}("%c.Set%r"), function{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(539,18,539,118)"), left{}(), format{}("%c.Set%r"), function{}()] symbol Lbl'Stop'StatusCode'Unds'NETWORK'Unds'StatusCode{}() : SortStatusCode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/network.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,27,92,40)"), left{}(), format{}("%c.StatusCode%r"), injective{}()] symbol Lbl'Stop'StringBuffer'Unds'STRING-BUFFER-IN-K'Unds'StringBuffer{}() : SortStringBuffer{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1760,27,1760,60)"), left{}(), format{}("%c.StringBuffer%r"), function{}()] symbol Lbl'Stop'TxType'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(482,23,482,32)"), left{}(), format{}("%c.TxType%r"), injective{}()] @@ -1014,14 +1014,14 @@ module TEST symbol LblAccountCellMapKey{}(SortAccountCell{}) : SortAcctIDCell{} [functional{}(), total{}(), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cAccountCellMapKey%r %c(%r %1 %c)%r"), function{}()] symbol LblBALANCE'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1150,26,1150,35)"), left{}(), format{}("%cBALANCE%r"), injective{}()] symbol LblBASEFEE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(960,69,960,78)"), left{}(), format{}("%cBASEFEE%r"), injective{}()] - symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), terminals{}("1"), klabel{}("BERLIN_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2621,25,2621,87)"), left{}(), format{}("%cBERLIN%r"), injective{}()] + symbol LblBERLIN'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("BERLIN_EVM"), priorities{}(), right{}(), smtlib{}("schedule_BERLIN"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2621,25,2621,87)"), left{}(), format{}("%cBERLIN%r"), injective{}()] symbol LblBLAKE2F'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,30,1812,39)"), left{}(), format{}("%cBLAKE2F%r"), injective{}()] symbol LblBLOCKHASH'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1001,26,1001,37)"), left{}(), format{}("%cBLOCKHASH%r"), injective{}()] hooked-symbol LblBN128Add'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'G1Point{}(SortG1Point{}, SortG1Point{}) : SortG1Point{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("BN128Add"), hook{}("KRYPTO.bn128add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(103,24,103,84)"), left{}(), format{}("%cBN128Add%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblBN128AtePairing'LParUndsCommUndsRParUnds'KRYPTO'Unds'Bool'Unds'List'Unds'List{}(SortList{}, SortList{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("BN128AtePairing"), hook{}("KRYPTO.bn128ate"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(107,21,107,82)"), left{}(), format{}("%cBN128AtePairing%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblBN128Mul'LParUndsCommUndsRParUnds'KRYPTO'Unds'G1Point'Unds'G1Point'Unds'Int{}(SortG1Point{}, SortInt{}) : SortG1Point{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("BN128Mul"), hook{}("KRYPTO.bn128mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(104,24,104,84)"), left{}(), format{}("%cBN128Mul%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblBYTE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(921,27,921,33)"), left{}(), format{}("%cBYTE%r"), injective{}()] - symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), terminals{}("1"), klabel{}("BYZANTIUM_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2542,25,2542,96)"), left{}(), format{}("%cBYZANTIUM%r"), injective{}()] + symbol LblBYZANTIUM'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("BYZANTIUM_EVM"), priorities{}(), right{}(), smtlib{}("schedule_BYZANTIUM"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2542,25,2542,96)"), left{}(), format{}("%cBYZANTIUM%r"), injective{}()] hooked-symbol LblBase2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("Base2String"), hook{}("STRING.base2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1633,21,1633,99)"), left{}(), format{}("%cBase2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblBlake2Compress'LParUndsRParUnds'KRYPTO'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cBlake2Compress%r %c(%r %1 %c)%r"), function{}(), klabel{}("Blake2Compress"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,23,121,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblBlake2CompressBytes'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cBlake2CompressBytes%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.blake2compress"), klabel{}("Blake2CompressBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,23,40,111)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1039,7 +1039,7 @@ module TEST symbol LblCODECOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(995,28,995,38)"), left{}(), format{}("%cCODECOPY%r"), injective{}()] symbol LblCODESIZE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(990,38,990,48)"), left{}(), format{}("%cCODESIZE%r"), injective{}()] symbol LblCOINBASE'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(968,28,968,38)"), left{}(), format{}("%cCOINBASE%r"), injective{}()] - symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), terminals{}("1"), klabel{}("CONSTANTINOPLE_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2558,25,2558,111)"), left{}(), format{}("%cCONSTANTINOPLE%r"), injective{}()] + symbol LblCONSTANTINOPLE'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("CONSTANTINOPLE_EVM"), priorities{}(), right{}(), smtlib{}("schedule_CONSTANTINOPLE"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2558,25,2558,111)"), left{}(), format{}("%cCONSTANTINOPLE%r"), injective{}()] symbol LblCREATE2'Unds'EVM'Unds'QuadStackOp{}() : SortQuadStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1630,28,1630,37)"), left{}(), format{}("%cCREATE2%r"), injective{}()] symbol LblCREATE'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1608,28,1608,36)"), left{}(), format{}("%cCREATE%r"), injective{}()] symbol LblCaddraccess'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), total{}(), priorities{}(), right{}(), smtlib{}("gas_Caddraccess"), terminals{}("110101"), klabel{}("Caddraccess"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2201,20,2201,123)"), left{}(), format{}("%cCaddraccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -1062,7 +1062,7 @@ module TEST symbol LblCsstore'LParUndsCommUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Schedule'Unds'Int'Unds'Int'Unds'Int{}(SortSchedule{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), total{}(), priorities{}(), right{}(), smtlib{}("gas_Csstore"), terminals{}("1101010101"), klabel{}("Csstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2195,20,2195,123)"), left{}(), format{}("%cCsstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] symbol LblCstorageaccess'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Schedule'Unds'Bool{}(SortSchedule{}, SortBool{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), total{}(), priorities{}(), right{}(), smtlib{}("gas_Cstorageaccess"), terminals{}("110101"), klabel{}("Cstorageaccess"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2202,20,2202,123)"), left{}(), format{}("%cCstorageaccess%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblCxfer'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Schedule'Unds'Int{}(SortSchedule{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), total{}(), priorities{}(), right{}(), smtlib{}("gas_Cxfer"), terminals{}("110101"), klabel{}("Cxfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2199,20,2199,123)"), left{}(), format{}("%cCxfer%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), terminals{}("1"), klabel{}("DEFAULT_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2393,25,2393,90)"), left{}(), format{}("%cDEFAULT%r"), injective{}()] + symbol LblDEFAULT'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("DEFAULT_EVM"), priorities{}(), right{}(), smtlib{}("schedule_DEFAULT"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2393,25,2393,90)"), left{}(), format{}("%cDEFAULT%r"), injective{}()] symbol LblDELEGATECALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1474,26,1474,40)"), left{}(), format{}("%cDELEGATECALL%r"), injective{}()] symbol LblDIFFICULTY'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(968,66,968,78)"), left{}(), format{}("%cDIFFICULTY%r"), injective{}()] symbol LblDIV'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(902,51,902,56)"), left{}(), format{}("%cDIV%r"), injective{}()] @@ -1107,7 +1107,7 @@ module TEST symbol LblFOUNDRY'Unds'UNIMPLEMENTED'Unds'FOUNDRY-CHEAT-CODES'Unds'ExceptionalStatusCode{}() : SortExceptionalStatusCode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/foundry.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,38,290,61)"), left{}(), format{}("%cFOUNDRY_UNIMPLEMENTED%r"), injective{}()] symbol LblFOUNDRY'Unds'WHITELISTCALL'Unds'FOUNDRY-CHEAT-CODES'Unds'ExceptionalStatusCode{}() : SortExceptionalStatusCode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/foundry.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(291,38,291,61)"), left{}(), format{}("%cFOUNDRY_WHITELISTCALL%r"), injective{}()] symbol LblFOUNDRY'Unds'WHITELISTSTORAGE'Unds'FOUNDRY-CHEAT-CODES'Unds'ExceptionalStatusCode{}() : SortExceptionalStatusCode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/foundry.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(292,38,292,64)"), left{}(), format{}("%cFOUNDRY_WHITELISTSTORAGE%r"), injective{}()] - symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), terminals{}("1"), klabel{}("FRONTIER_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2482,25,2482,93)"), left{}(), format{}("%cFRONTIER%r"), injective{}()] + symbol LblFRONTIER'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("FRONTIER_EVM"), priorities{}(), right{}(), smtlib{}("schedule_FRONTIER"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2482,25,2482,93)"), left{}(), format{}("%cFRONTIER%r"), injective{}()] symbol LblFailed'Unds'FOUNDRY-ACCOUNTS'Unds'FoundryField{}() : SortFoundryField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/foundry.md)"), priorities{}(), right{}(), terminals{}("1"), klabel{}("slot_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(117,29,117,59)"), left{}(), format{}("%cFailed%r"), injective{}()] hooked-symbol LblFloat2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float{}(SortFloat{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Float2String"), hook{}("STRING.float2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1610,21,1610,101)"), left{}(), format{}("%cFloat2String%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblFloat2String'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'Float'Unds'String{}(SortFloat{}, SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("FloatFormat"), hook{}("STRING.floatFormat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1611,21,1611,122)"), left{}(), format{}("%cFloat2String%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -1184,22 +1184,22 @@ module TEST symbol LblGwarmstorageread'Unds'EVM'Unds'ScheduleConst{}() : SortScheduleConst{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2386,30,2386,48)"), left{}(), format{}("%cGwarmstorageread%r"), injective{}()] symbol LblGzero'Unds'EVM'Unds'ScheduleConst{}() : SortScheduleConst{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2379,30,2379,37)"), left{}(), format{}("%cGzero%r"), injective{}()] symbol LblGzerovaluenewaccountgas'Unds'EVM'Unds'ScheduleFlag{}() : SortScheduleFlag{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2363,102,2363,127)"), left{}(), format{}("%cGzerovaluenewaccountgas%r"), injective{}()] - symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), terminals{}("1"), klabel{}("HOMESTEAD_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2493,25,2493,96)"), left{}(), format{}("%cHOMESTEAD%r"), injective{}()] + symbol LblHOMESTEAD'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("HOMESTEAD_EVM"), priorities{}(), right{}(), smtlib{}("schedule_HOMESTEAD"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2493,25,2493,96)"), left{}(), format{}("%cHOMESTEAD%r"), injective{}()] symbol LblHPEncodeAux'LParUndsRParUnds'SERIALIZATION'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("HPEncodeAux"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(572,20,572,50)"), left{}(), format{}("%cHPEncodeAux%r %c(%r %1 %c)%r"), function{}()] symbol LblHex2Raw'LParUndsRParUnds'SERIALIZATION'Unds'String'Unds'String{}(SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Hex2Raw"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(227,23,227,52)"), left{}(), format{}("%cHex2Raw%r %c(%r %1 %c)%r"), function{}()] symbol LblID'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1738,30,1738,34)"), left{}(), format{}("%cID%r"), injective{}()] symbol LblINVALID'Unds'EVM'Unds'InvalidOp{}() : SortInvalidOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(844,26,844,35)"), left{}(), format{}("%cINVALID%r"), injective{}()] - symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), terminals{}("1"), klabel{}("ISTANBUL_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2587,25,2587,93)"), left{}(), format{}("%cISTANBUL%r"), injective{}()] + symbol LblISTANBUL'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("ISTANBUL_EVM"), priorities{}(), right{}(), smtlib{}("schedule_ISTANBUL"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2587,25,2587,93)"), left{}(), format{}("%cISTANBUL%r"), injective{}()] symbol LblISZERO'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(897,26,897,34)"), left{}(), format{}("%cISZERO%r"), injective{}()] symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Endianness'Unds'Signedness{}(SortInt{}, SortEndianness{}, SortSignedness{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2BytesNoLen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1884,20,1884,100)"), left{}(), format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2Bytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Int'Unds'Int'Unds'Endianness{}(SortInt{}, SortInt{}, SortEndianness{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("Int2Bytes"), hook{}("BYTES.int2bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1883,20,1883,100)"), left{}(), format{}("%cInt2Bytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblInt2String'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Int2String"), hook{}("STRING.int2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1632,21,1632,99)"), left{}(), format{}("%cInt2String%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblJSON2String'LParUndsRParUnds'JSON'Unds'String'Unds'JSON{}(SortJSON{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("JSON2String"), hook{}("JSON.json2string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,23,43,75)"), left{}(), format{}("%cJSON2String%r %c(%r %1 %c)%r"), function{}()] - symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("JSONEntry"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] - symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("101"), klabel{}("JSONList"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] - symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("101"), klabel{}("JSONObject"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), left{}(), format{}("%c{%r %1 %c}%r"), injective{}()] - symbol LblJSONnull{}() : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("JSONnull"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), left{}(), format{}("%cnull%r"), injective{}()] - symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("JSONs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] + symbol LblJSONEntry{}(SortJSONKey{}, SortJSON{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}("JSONEntry"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(25,24,25,73)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] + symbol LblJSONList{}(SortJSONs{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}("JSONList"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(27,24,27,73)"), left{}(), format{}("%c[%r %1 %c]%r"), injective{}()] + symbol LblJSONObject{}(SortJSONs{}) : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}("JSONObject"), priorities{}(), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(26,24,26,73)"), left{}(), format{}("%c{%r %1 %c}%r"), injective{}()] + symbol LblJSONnull{}() : SortJSON{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}("JSONnull"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(23,24,23,73)"), left{}(), format{}("%cnull%r"), injective{}()] + symbol LblJSONs{}(SortJSON{}, SortJSONs{}) : SortJSONs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), symbol'Kywd'{}("JSONs"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,24,21,73)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] symbol LblJUMPDEST'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1030,28,1030,38)"), left{}(), format{}("%cJUMPDEST%r"), injective{}()] symbol LblJUMPI'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1045,27,1045,34)"), left{}(), format{}("%cJUMPI%r"), injective{}()] symbol LblJUMP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1034,26,1034,32)"), left{}(), format{}("%cJUMP%r"), injective{}()] @@ -1208,15 +1208,15 @@ module TEST symbol LblKeccak256raw'LParUndsRParUnds'KRYPTO'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cKeccak256raw%r %c(%r %1 %c)%r"), function{}(), klabel{}("Keccak256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(123,20,123,78)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblKeccak256rawBytes'LParUndsRParUnds'KRYPTO'Unds'Bytes'Unds'Bytes{}(SortBytes{}) : SortBytes{} [format{}("%cKeccak256rawBytes%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.keccak256raw"), klabel{}("Keccak256rawBytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,22,49,109)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblLOG'LParUndsRParUnds'EVM'Unds'LogOp'Unds'Int{}(SortInt{}) : SortLogOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("LOG"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1128,22,1128,33)"), left{}(), format{}("%cLOG%r %c(%r %1 %c)%r"), injective{}()] - symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), terminals{}("1"), klabel{}("LONDON_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2651,25,2651,87)"), left{}(), format{}("%cLONDON%r"), injective{}()] + symbol LblLONDON'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("LONDON_EVM"), priorities{}(), right{}(), smtlib{}("schedule_LONDON"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2651,25,2651,87)"), left{}(), format{}("%cLONDON%r"), injective{}()] symbol LblLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(938,27,938,31)"), left{}(), format{}("%cLT%r"), injective{}()] symbol LblLegacyProtectedTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'ByteArray'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}, SortInt{}) : SortLegacyTx{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101010101010101"), klabel{}("LegacyProtectedTxData"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(504,29,504,150)"), left{}(), format{}("%cLegacyProtectedTxData%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c)%r"), injective{}()] symbol LblLegacyTxData'LParUndsCommUndsCommUndsCommUndsCommUndsCommUndsRParUnds'EVM-TYPES'Unds'LegacyTx'Unds'Int'Unds'Int'Unds'Int'Unds'Account'Unds'Int'Unds'ByteArray{}(SortInt{}, SortInt{}, SortInt{}, SortAccount{}, SortInt{}, SortBytes{}) : SortLegacyTx{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("LegacyTxData"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(503,29,503,136)"), left{}(), format{}("%cLegacyTxData%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), injective{}()] symbol LblLegacy'Unds'EVM-TYPES'Unds'TxType{}() : SortTxType{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(483,23,483,31)"), left{}(), format{}("%cLegacy%r"), injective{}()] hooked-symbol LblList2Set'LParUndsRParUnds'COLLECTIONS'Unds'Set'Unds'List{}(SortList{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("List2Set"), hook{}("SET.list2set"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(860,18,860,70)"), left{}(), format{}("%cList2Set%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(766,20,766,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(813,19,813,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(755,19,755,132)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(766,20,766,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(813,19,813,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(755,19,755,132)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] symbol LblM3'Coln'2048'LParUndsRParUnds'EVM'Unds'Int'Unds'ByteArray{}(SortBytes{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(706,20,706,58)"), left{}(), format{}("%cM3:2048%r %c(%r %1 %c)%r"), function{}()] symbol LblMLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(876,26,876,33)"), left{}(), format{}("%cMLOAD%r"), injective{}()] symbol LblMODEXP'Unds'EVM'Unds'PrecompiledOp{}() : SortPrecompiledOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1744,30,1744,38)"), left{}(), format{}("%cMODEXP%r"), injective{}()] @@ -1226,8 +1226,8 @@ module TEST symbol LblMSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(881,27,881,35)"), left{}(), format{}("%cMSTORE%r"), injective{}()] symbol LblMULMOD'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,39,916,47)"), left{}(), format{}("%cMULMOD%r"), injective{}()] symbol LblMUL'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(902,35,902,40)"), left{}(), format{}("%cMUL%r"), injective{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] symbol LblMerkleBranch'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'Map'Unds'String{}(SortMap{}, SortString{}) : SortMerkleTree{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("MerkleBranch"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(441,27,441,58)"), left{}(), format{}("%cMerkleBranch%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] symbol LblMerkleCheck'LParUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree{}(SortMerkleTree{}) : SortMerkleTree{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("MerkleCheck"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(514,27,514,63)"), left{}(), format{}("%cMerkleCheck%r %c(%r %1 %c)%r"), function{}()] symbol LblMerkleDelete'LParUndsCommUndsRParUnds'SERIALIZATION'Unds'MerkleTree'Unds'MerkleTree'Unds'ByteArray{}(SortMerkleTree{}, SortBytes{}) : SortMerkleTree{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("MerkleDelete"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(449,27,449,85)"), left{}(), format{}("%cMerkleDelete%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -1242,12 +1242,12 @@ module TEST hooked-symbol LblMessageCellMap'Coln'in'Unds'keys{}(SortMsgIDCell{}, SortMessageCellMap{}) : SortBool{} [functional{}(), total{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] hooked-symbol LblMessageCellMapItem{}(SortMsgIDCell{}, SortMessageCell{}) : SortMessageCellMap{} [priorities{}(), right{}(), terminals{}("110101"), hook{}("MAP.element"), left{}(), format{}("%2"), function{}()] symbol LblMessageCellMapKey{}(SortMessageCell{}) : SortMsgIDCell{} [functional{}(), total{}(), priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cMessageCellMapKey%r %c(%r %1 %c)%r"), function{}()] - symbol LblNORMAL{}() : SortMode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("NORMAL"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(184,21,184,55)"), left{}(), format{}("%cNORMAL%r"), injective{}()] + symbol LblNORMAL{}() : SortMode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("NORMAL"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(184,21,184,55)"), left{}(), format{}("%cNORMAL%r"), injective{}()] symbol LblNOT'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(897,37,897,42)"), left{}(), format{}("%cNOT%r"), injective{}()] symbol LblNUMBER'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(968,55,968,63)"), left{}(), format{}("%cNUMBER%r"), injective{}()] symbol LblORIGIN'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(975,40,975,48)"), left{}(), format{}("%cORIGIN%r"), injective{}()] symbol LblPC'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(960,28,960,32)"), left{}(), format{}("%cPC%r"), injective{}()] - symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), terminals{}("1"), klabel{}("PETERSBURG_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2575,25,2575,99)"), left{}(), format{}("%cPETERSBURG%r"), injective{}()] + symbol LblPETERSBURG'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("PETERSBURG_EVM"), priorities{}(), right{}(), smtlib{}("schedule_PETERSBURG"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2575,25,2575,99)"), left{}(), format{}("%cPETERSBURG%r"), injective{}()] symbol LblPOP'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(855,26,855,31)"), left{}(), format{}("%cPOP%r"), injective{}()] symbol LblPUSH'LParUndsRParUnds'EVM'Unds'PushOp'Unds'Int{}(SortInt{}) : SortPushOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("PUSH"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(864,23,864,35)"), left{}(), format{}("%cPUSH%r %c(%r %1 %c)%r"), injective{}()] symbol LblRETURNDATACOPY'Unds'EVM'Unds'TernStackOp{}() : SortTernStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1112,28,1112,44)"), left{}(), format{}("%cRETURNDATACOPY%r"), injective{}()] @@ -1278,16 +1278,16 @@ module TEST symbol LblSLOAD'Unds'EVM'Unds'UnStackOp{}() : SortUnStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1227,26,1227,33)"), left{}(), format{}("%cSLOAD%r"), injective{}()] symbol LblSLT'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(944,27,944,32)"), left{}(), format{}("%cSLT%r"), injective{}()] symbol LblSMOD'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(911,36,911,42)"), left{}(), format{}("%cSMOD%r"), injective{}()] - symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), terminals{}("1"), klabel{}("SPURIOUS_DRAGON_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2526,25,2526,114)"), left{}(), format{}("%cSPURIOUS_DRAGON%r"), injective{}()] + symbol LblSPURIOUS'Unds'DRAGON'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("SPURIOUS_DRAGON_EVM"), priorities{}(), right{}(), smtlib{}("schedule_SPURIOUS_DRAGON"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2526,25,2526,114)"), left{}(), format{}("%cSPURIOUS_DRAGON%r"), injective{}()] symbol LblSSTORE'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,27,1237,35)"), left{}(), format{}("%cSSTORE%r"), injective{}()] symbol LblSTATICCALL'Unds'EVM'Unds'CallSixOp{}() : SortCallSixOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1488,26,1488,38)"), left{}(), format{}("%cSTATICCALL%r"), injective{}()] symbol LblSTOP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,28,1062,34)"), left{}(), format{}("%cSTOP%r"), injective{}()] symbol LblSUB'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(902,43,902,48)"), left{}(), format{}("%cSUB%r"), injective{}()] symbol LblSWAP'LParUndsRParUnds'EVM'Unds'StackOp'Unds'Int{}(SortInt{}) : SortStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SWAP"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(859,38,859,50)"), left{}(), format{}("%cSWAP%r %c(%r %1 %c)%r"), injective{}()] hooked-symbol LblSet2List'LParUndsRParUnds'COLLECTIONS'Unds'List'Unds'Set{}(SortSet{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Set2List"), hook{}("SET.set2list"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(859,19,859,70)"), left{}(), format{}("%cSet2List%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,142)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,119)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(579,18,579,142)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(587,19,587,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,119)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] symbol LblSha256'LParUndsRParUnds'KRYPTO'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cSha256%r %c(%r %1 %c)%r"), function{}(), klabel{}("Sha256"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(116,23,116,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] hooked-symbol LblSha256Bytes'LParUndsRParUnds'KRYPTO'Unds'String'Unds'Bytes{}(SortBytes{}) : SortString{} [format{}("%cSha256Bytes%r %c(%r %1 %c)%r"), function{}(), hook{}("KRYPTO.sha256"), klabel{}("Sha256Bytes"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,23,35,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] symbol LblSha256raw'LParUndsRParUnds'KRYPTO'Unds'String'Unds'String{}(SortString{}) : SortString{} [format{}("%cSha256raw%r %c(%r %1 %c)%r"), function{}(), klabel{}("Sha256raw"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(124,23,124,81)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/sguest/work/evm-semantics/kevm-pyk/src/kevm_pyk/kproj/plugin/plugin/krypto.md)"), priorities{}(), right{}(), terminals{}("1101")] @@ -1313,86 +1313,86 @@ module TEST hooked-symbol LblString2Int'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2Int"), hook{}("STRING.string2int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1631,21,1631,92)"), left{}(), format{}("%cString2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblString2JSON'LParUndsRParUnds'JSON'Unds'JSON'Unds'String{}(SortString{}) : SortJSON{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/json.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("String2JSON"), hook{}("JSON.string2json"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,21,45,75)"), left{}(), format{}("%cString2JSON%r %c(%r %1 %c)%r"), function{}()] symbol LblStringBuffer2String'LParUndsRParUnds'STRING-BUFFER-IN-K'Unds'String'Unds'StringBuffer{}(SortStringBuffer{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("StringBuffer2String"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1763,21,1763,75)"), left{}(), format{}("%cStringBuffer2String%r %c(%r %1 %c)%r"), function{}()] - symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), terminals{}("1"), klabel{}("TANGERINE_WHISTLE_EVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2503,25,2503,120)"), left{}(), format{}("%cTANGERINE_WHISTLE%r"), injective{}()] + symbol LblTANGERINE'Unds'WHISTLE'Unds'EVM{}() : SortSchedule{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("TANGERINE_WHISTLE_EVM"), priorities{}(), right{}(), smtlib{}("schedule_TANGERINE_WHISTLE"), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2503,25,2503,120)"), left{}(), format{}("%cTANGERINE_WHISTLE%r"), injective{}()] symbol LblTIMESTAMP'Unds'EVM'Unds'NullStackOp{}() : SortNullStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(968,41,968,52)"), left{}(), format{}("%cTIMESTAMP%r"), injective{}()] symbol LblUNDEFINED'LParUndsRParUnds'EVM'Unds'InvalidOp'Unds'Int{}(SortInt{}) : SortInvalidOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(844,38,844,61)"), left{}(), format{}("%cUNDEFINED%r %c(%r %1 %c)%r"), injective{}()] - symbol LblVMTESTS{}() : SortMode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("VMTESTS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,56)"), left{}(), format{}("%cVMTESTS%r"), injective{}()] + symbol LblVMTESTS{}() : SortMode{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("VMTESTS"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,21,185,56)"), left{}(), format{}("%cVMTESTS%r"), injective{}()] symbol LblWordStack2List'LParUndsRParUnds'EVM-TYPES'Unds'List'Unds'WordStack{}(SortWordStack{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("WordStack2List"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(325,21,325,67)"), left{}(), format{}("%cWordStack2List%r %c(%r %1 %c)%r"), function{}()] symbol LblXOR'Unds'EVM'Unds'BinStackOp{}() : SortBinStackOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(932,45,932,50)"), left{}(), format{}("%cXOR%r"), injective{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_%Int_"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,18,1047,171)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_%Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.tmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1047,18,1047,171)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %c%%Int%r %2"), function{}()] symbol Lbl'UndsPerc'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(92,20,92,53)"), left{}(), format{}("%1 %c%%Word%r %2"), function{}()] symbol Lbl'UndsPerc'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(121,20,121,47)"), left{}(), format{}("%1 %c%%sWord%r %2"), function{}()] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), klabel{}("_&Int_"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1058,18,1058,184)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_&Int_"), comm{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), terminals{}("010"), hook{}("INT.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1058,18,1058,184)"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), format{}("%1 %c&Int%r %2"), function{}()] symbol Lbl'UndsAnd-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(165,20,165,55)"), left{}(), format{}("%1 %c&Word%r %2"), function{}()] symbol Lbl'UndsLParUndsCommUndsRParUnds'SERIALIZATION'Unds'LengthPrefix'Unds'LengthPrefixType'Unds'Int'Unds'Int{}(SortLengthPrefixType{}, SortInt{}, SortInt{}) : SortLengthPrefix{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), priorities{}(), right{}(), terminals{}("010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(408,29,408,65)"), left{}(), format{}("%1 %c(%r %2 %c,%r %3 %c)%r"), injective{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), klabel{}("_*Int_"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1043,18,1043,183)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_*Int_"), comm{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("*"), right{}(), terminals{}("010"), hook{}("INT.mul"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1043,18,1043,183)"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c*Int%r %2"), function{}()] symbol Lbl'UndsStar'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(89,20,89,53)"), left{}(), format{}("%1 %c*Word%r %2"), function{}()] symbol Lbl'UndsPlusPlusUndsUnds'EVM-TYPES'Unds'ByteArray'Unds'ByteArray'Unds'ByteArray{}(SortBytes{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(Lbl'UndsPlusPlusUndsUnds'EVM-TYPES'Unds'ByteArray'Unds'ByteArray'Unds'ByteArray{}()), smtlib{}("_plusWS_"), terminals{}("010"), klabel{}("_++_WS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(397,26,397,109)"), left{}(), format{}("%1 %c++%r %2"), function{}()] hooked-symbol Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}(SortBytes{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes{}()), terminals{}("010"), hook{}("BYTES.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1980,20,1980,85)"), left{}(), format{}("%1 %c+Bytes%r %2"), function{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), klabel{}("_+Int_"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1052,18,1052,180)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_+Int_"), comm{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("+"), right{}(), terminals{}("010"), hook{}("INT.add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1052,18,1052,180)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c+Int%r %2"), function{}()] symbol Lbl'UndsPlus'JSONs'UndsUnds'JSON-EXT'Unds'JSONs'Unds'JSONs'Unds'JSONs{}(SortJSONs{}, SortJSONs{}) : SortJSONs{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/json-rpc.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(24,22,24,53)"), left{}(), format{}("%1 %c+JSONs%r %2"), function{}()] symbol Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}(SortStringBuffer{}, SortString{}) : SortStringBuffer{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1761,27,1761,87)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-BUFFER-IN-K'Unds'StringBuffer'Unds'StringBuffer'Unds'String{}()), format{}("%1 %c+String%r %2"), avoid{}(), function{}()] hooked-symbol Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortString{} [latex{}("{#1}+_{\\scriptstyle\\it String}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1522,21,1522,135)"), left{}(Lbl'UndsPlus'String'UndsUnds'STRING-COMMON'Unds'String'Unds'String'Unds'String{}()), format{}("%1 %c+String%r %2"), function{}()] symbol Lbl'UndsPlus'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(88,20,88,53)"), left{}(), format{}("%1 %c+Word%r %2"), function{}()] symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'EventArgs'Unds'EventArg'Unds'EventArgs{}(SortEventArg{}, SortEventArgs{}) : SortEventArgs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("eventArgs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(425,26,425,65)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] symbol Lbl'UndsCommUndsUnds'EVM-ABI'Unds'TypedArgs'Unds'TypedArg'Unds'TypedArgs{}(SortTypedArg{}, SortTypedArgs{}) : SortTypedArgs{} [functional{}(), constructor{}(), userList{}("*"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("typedArgs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(77,26,77,65)"), left{}(), format{}("%1 %c,%r %2"), injective{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), klabel{}("_-Int_"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1053,18,1053,174)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_-Int_"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), smt-hook{}("-"), right{}(), terminals{}("010"), hook{}("INT.sub"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1053,18,1053,174)"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), format{}("%1 %c-Int%r %2"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] symbol Lbl'Unds'-Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,53)"), left{}(), format{}("%1 %c-Word%r %2"), function{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_/Int_"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1046,18,1046,173)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] + hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_/Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.tdiv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1046,18,1046,173)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), format{}("%1 %c/Int%r %2"), function{}()] symbol Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(91,20,91,53)"), left{}(), format{}("%1 %c/Word%r %2"), function{}()] symbol Lbl'UndsSlsh'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,20,120,47)"), left{}(), format{}("%1 %c/sWord%r %2"), function{}()] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'Bytes'Unds'Int'Unds'Bytes{}(SortInt{}, SortBytes{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(234,22,234,46)"), left{}(), format{}("%1 %c:%r %2"), function{}()] symbol Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortWordStack{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), smtlib{}("_WS_"), terminals{}("010"), klabel{}("_:_WS"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(229,26,229,73)"), left{}(), format{}("%1 %c:%r %2"), injective{}()] symbol Lbl'Unds-LT--LT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(335,20,335,47)"), left{}(), format{}("%1 %c<>%r"), function{}()] - hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("<="), right{}(), terminals{}("010"), klabel{}("_<=Int_"), hook{}("INT.le"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1114,19,1114,172)"), left{}(Lbl'Unds-LT-Eqls'Int'Unds'{}()), format{}("%1 %c<=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-LT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\leq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_<=Int_"), priorities{}(), smt-hook{}("<="), right{}(), terminals{}("010"), hook{}("INT.le"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1114,19,1114,172)"), left{}(Lbl'Unds-LT-Eqls'Int'Unds'{}()), format{}("%1 %c<=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,87)"), left{}(), format{}("%1 %c<=Map%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(596,19,596,81)"), left{}(), format{}("%1 %c<=Set%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.le"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1667,19,1667,78)"), left{}(), format{}("%1 %c<=String%r %2"), function{}()] symbol Lbl'Unds-LT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(136,20,136,54)"), left{}(), format{}("%1 %c<=Word%r %2"), function{}()] - hooked-symbol Lbl'Unds-LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{<_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("<"), right{}(), terminals{}("010"), klabel{}("_%r"), function{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("distinct"), right{}(), terminals{}("010"), klabel{}("_=/=Bool_"), hook{}("BOOL.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(919,19,919,128)"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), format{}("%1 %c=/=Bool%r %2"), function{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("distinct"), right{}(), terminals{}("010"), klabel{}("_=/=Int_"), hook{}("INT.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1119,19,1119,184)"), left{}(Lbl'UndsEqlsSlshEqls'Int'Unds'{}()), format{}("%1 %c=/=Int%r %2"), function{}()] - hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [latex{}("{#1}\\mathrel{\\neq_K}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), notEqualEqualK{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("distinct"), right{}(), terminals{}("010"), klabel{}("_=/=K_"), hook{}("KEQUAL.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2182,19,2182,166)"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), format{}("%1 %c=/=K%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_=/=Bool_"), priorities{}(), smt-hook{}("distinct"), right{}(), terminals{}("010"), hook{}("BOOL.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(919,19,919,128)"), left{}(Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}()), format{}("%1 %c=/=Bool%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{{=}{/}{=}_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_=/=Int_"), priorities{}(), smt-hook{}("distinct"), right{}(), terminals{}("010"), hook{}("INT.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1119,19,1119,184)"), left{}(Lbl'UndsEqlsSlshEqls'Int'Unds'{}()), format{}("%1 %c=/=Int%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsSlshEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [latex{}("{#1}\\mathrel{\\neq_K}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_=/=K_"), notEqualEqualK{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("distinct"), right{}(), terminals{}("010"), hook{}("KEQUAL.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2182,19,2182,166)"), left{}(Lbl'UndsEqlsEqls'K'Unds'{}(),Lbl'UndsEqlsSlshEqls'K'Unds'{}()), format{}("%1 %c=/=K%r %2"), function{}()] hooked-symbol Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ne"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1663,19,1663,90)"), left{}(Lbl'UndsEqlsSlshEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}()), format{}("%1 %c=/=String%r %2"), function{}()] - hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("="), right{}(), terminals{}("010"), klabel{}("_==Bool_"), hook{}("BOOL.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(918,19,918,120)"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), format{}("%1 %c==Bool%r %2"), function{}()] - hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}("="), right{}(), terminals{}("010"), klabel{}("_==Int_"), hook{}("INT.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1118,19,1118,173)"), left{}(Lbl'UndsEqlsEqls'Int'Unds'{}()), format{}("%1 %c==Int%r %2"), function{}()] - hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [latex{}("{#1}\\mathrel{=_K}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("="), right{}(), terminals{}("010"), equalEqualK{}(), klabel{}("_==K_"), hook{}("KEQUAL.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2181,19,2181,152)"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), format{}("%1 %c==K%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsEqls'Bool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_==Bool_"), priorities{}(), smt-hook{}("="), right{}(), terminals{}("010"), hook{}("BOOL.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(918,19,918,120)"), left{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), format{}("%1 %c==Bool%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsEqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{{=}{=}_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_==Int_"), priorities{}(), smt-hook{}("="), right{}(), terminals{}("010"), hook{}("INT.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1118,19,1118,173)"), left{}(Lbl'UndsEqlsEqls'Int'Unds'{}()), format{}("%1 %c==Int%r %2"), function{}()] + hooked-symbol Lbl'UndsEqlsEqls'K'Unds'{}(SortK{}, SortK{}) : SortBool{} [latex{}("{#1}\\mathrel{=_K}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_==K_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),LblnotBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("="), right{}(), terminals{}("010"), equalEqualK{}(), hook{}("KEQUAL.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2181,19,2181,152)"), left{}(Lbl'UndsEqlsSlshEqls'K'Unds'{}(),Lbl'UndsEqlsEqls'K'Unds'{}()), format{}("%1 %c==K%r %2"), function{}()] hooked-symbol Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.eq"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1662,19,1662,84)"), left{}(Lbl'UndsEqlsEqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}()), format{}("%1 %c==String%r %2"), function{}()] symbol Lbl'UndsEqlsEqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(138,20,138,54)"), left{}(), format{}("%1 %c==Word%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), klabel{}("_>=Int_"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1116,19,1116,172)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-Eqls'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_>=Int_"), priorities{}(), smt-hook{}(">="), right{}(), terminals{}("010"), hook{}("INT.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1116,19,1116,172)"), left{}(Lbl'Unds-GT-Eqls'Int'Unds'{}()), format{}("%1 %c>=Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-Eqls'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.ge"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1669,19,1669,78)"), left{}(), format{}("%1 %c>=String%r %2"), function{}()] symbol Lbl'Unds-GT-Eqls'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(137,20,137,54)"), left{}(), format{}("%1 %c>=Word%r %2"), function{}()] symbol Lbl'Unds-GT--GT-'Byte'UndsUnds'WORD'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(336,20,336,47)"), left{}(), format{}("%1 %c>>Byte%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), klabel{}("_>>Int_"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1055,18,1055,173)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_>>Int_"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), terminals{}("010"), hook{}("INT.shr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1055,18,1055,173)"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), format{}("%1 %c>>Int%r %2"), function{}()] symbol Lbl'Unds-GT--GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(168,20,168,48)"), left{}(), format{}("%1 %c>>Word%r %2"), function{}()] symbol Lbl'Unds-GT--GT-'sWord'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(169,20,169,48)"), left{}(), format{}("%1 %c>>sWord%r %2"), function{}()] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), klabel{}("_>Int_"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1117,19,1117,167)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_>Int_"), priorities{}(), smt-hook{}(">"), right{}(), terminals{}("010"), hook{}("INT.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1117,19,1117,167)"), left{}(Lbl'Unds-GT-'Int'Unds'{}()), format{}("%1 %c>Int%r %2"), function{}()] hooked-symbol Lbl'Unds-GT-'String'UndsUnds'STRING-COMMON'Unds'Bool'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("STRING.gt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1668,19,1668,78)"), left{}(), format{}("%1 %c>String%r %2"), function{}()] symbol Lbl'Unds-GT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(135,20,135,54)"), left{}(), format{}("%1 %c>Word%r %2"), function{}()] hooked-symbol Lbl'Unds'AccountCellMap'Unds'{}(SortAccountCellMap{}, SortAccountCellMap{}) : SortAccountCellMap{} [unit{}(Lbl'Stop'AccountCellMap{}()), element{}(LblAccountCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,19,739,188)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,19,739,188)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'Unds'MessageCellMap'Unds'{}(SortMessageCellMap{}, SortMessageCellMap{}) : SortMessageCellMap{} [unit{}(Lbl'Stop'MessageCellMap{}()), element{}(LblMessageCellMapItem{}()), comm{}(), priorities{}(), cellCollection{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("MAP.concat"), left{}(), format{}("%1 %2"), avoid{}(), function{}(), wrapElement{}("")] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,165)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(531,18,531,165)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] symbol Lbl'UndsLSqBUndsStopStopUndsRSqBUnds'EVM-TYPES'Unds'ByteArray'Unds'ByteArray'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(401,26,401,74)"), left{}(), format{}("%1 %c[%r %2 %c..%r %3 %c]%r"), function{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Memory'Unds'Memory'Unds'Int'Unds'ByteArray{}(SortBytes{}, SortInt{}, SortBytes{}) : SortBytes{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010101"), klabel{}("mapWriteBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(341,23,341,97)"), left{}(), format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'Memory'Unds'Memory'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(354,23,354,61)"), left{}(), format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}()] symbol Lbl'UndsLSqBUndsColnEqlsUndsRSqBUnds'EVM-TYPES'Unds'WordStack'Unds'WordStack'Unds'Int'Unds'Int{}(SortWordStack{}, SortInt{}, SortInt{}) : SortWordStack{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(285,26,285,74)"), left{}(), format{}("%1 %c[%r %2 %c:=%r %3 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), hook{}("BYTES.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1906,20,1906,91)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(775,19,775,108)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqBUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("0101"), hook{}("BYTES.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1915,18,1915,63)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] symbol Lbl'UndsLSqBUndsRSqBUnds'EVM-TYPES'Unds'Int'Unds'WordStack'Unds'Int{}(SortWordStack{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("0101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(279,20,279,59)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), klabel{}("_^%Int__"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1041,18,1041,139)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), klabel{}("_^Int_"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1040,18,1040,178)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^%Int__"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("(mod (^ #1 #2) #3)"), right{}(), terminals{}("0100"), hook{}("INT.powmod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1041,18,1041,139)"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), format{}("%1 %c^%%Int%r %2 %3"), function{}()] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_^Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("^"), right{}(), terminals{}("010"), hook{}("INT.pow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1040,18,1040,178)"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), format{}("%1 %c^Int%r %2"), function{}()] symbol Lbl'UndsXor-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(108,20,108,52)"), left{}(), format{}("%1 %c^Word%r %2"), function{}()] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'StackOp'Unds'WordStack{}(SortStackOp{}, SortWordStack{}) : SortInternalOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(460,27,460,44)"), left{}(), format{}("%1 %2"), injective{}()] symbol Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int{}(SortUnStackOp{}, SortInt{}) : SortInternalOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("00"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(446,27,446,42)"), left{}(), format{}("%1 %2"), injective{}()] @@ -1402,77 +1402,77 @@ module TEST symbol Lbl'UndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'QuadStackOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortQuadStackOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("00000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(449,27,449,54)"), left{}(), format{}("%1 %2 %3 %4 %5"), injective{}()] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallSixOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallSixOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("0000000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(468,27,468,64)"), left{}(), format{}("%1 %2 %3 %4 %5 %6 %7"), injective{}()] symbol Lbl'UndsUndsUndsUndsUndsUndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'CallOp'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortCallOp{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortInternalOp{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("00000000"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(469,27,469,64)"), left{}(), format{}("%1 %2 %3 %4 %5 %6 %7 %8"), injective{}()] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andBool_"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(911,19,911,185)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_andThenBool_"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(912,19,912,147)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), klabel{}("_divInt_"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,18,1049,122)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_andBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.and"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(911,19,911,185)"), left{}(Lbl'Unds'andBool'Unds'{}()), format{}("%1 %candBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_andThenBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("and"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.andThen"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(912,19,912,147)"), left{}(Lbl'Unds'andThenBool'Unds'{}()), format{}("%1 %candThenBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_divInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("div"), right{}(), terminals{}("010"), hook{}("INT.ediv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1049,18,1049,122)"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), format{}("%1 %cdivInt%r %2"), function{}()] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1128,19,1128,53)"), left{}(), format{}("%1 %cdividesInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_impliesBool_"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,19,916,146)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_impliesBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("=>"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.implies"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(916,19,916,146)"), left{}(Lbl'Unds'impliesBool'Unds'{}()), format{}("%1 %cimpliesBool%r %2"), function{}()] symbol Lbl'Unds'in'UndsUnds'EVM-TYPES'Unds'Bool'Unds'Int'Unds'WordStack{}(SortInt{}, SortWordStack{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(304,21,304,50)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(822,19,822,97)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), klabel{}("_modInt_"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,122)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orBool_"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,19,914,180)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), klabel{}("_orElseBool_"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(915,19,915,144)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_modInt_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), smt-hook{}("mod"), right{}(), terminals{}("010"), hook{}("INT.emod"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,18,1050,122)"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), format{}("%1 %cmodInt%r %2"), function{}()] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_orBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(914,19,914,180)"), left{}(Lbl'Unds'orBool'Unds'{}()), format{}("%1 %corBool%r %2"), function{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_orElseBool_"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), smt-hook{}("or"), boolOperation{}(), right{}(), terminals{}("010"), hook{}("BOOL.orElse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(915,19,915,144)"), left{}(Lbl'Unds'orElseBool'Unds'{}()), format{}("%1 %corElseBool%r %2"), function{}()] symbol Lbl'Unds's'-LT-'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(150,20,150,54)"), left{}(), format{}("%1 %cs_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), klabel{}("_|Int_"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,18,1062,181)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("_|Int_"), comm{}(), priorities{}(), right{}(), smtlib{}("orInt"), terminals{}("010"), hook{}("INT.or"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,18,1062,181)"), left{}(Lbl'UndsPipe'Int'Unds'{}()), format{}("%1 %c|Int%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), comm{}(), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(558,18,558,92)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] symbol Lbl'UndsPipe'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(164,20,164,55)"), left{}(), format{}("%1 %c|Word%r %2"), function{}()] - symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), macro{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_selector"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(461,20,461,102)"), no-evaluators{}(), left{}(), format{}("%cselector%r %c(%r %1 %c)%r"), alias'Kywd'{}(), function{}()] - symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_address"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), left{}(), format{}("%c#address%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("abi_type_array"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), left{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), left{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_bytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), left{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_bytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), left{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_bytes4"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), left{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_int128"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), left{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_int256"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), left{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_string"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), left{}(), format{}("%c#string%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint104"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), left{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint112"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), left{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint120"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), left{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint128"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), left{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint136"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), left{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint144"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), left{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint152"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), left{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint16"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), left{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint160"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), left{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint168"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), left{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint176"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), left{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint184"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), left{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint192"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), left{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint200"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), left{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint208"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), left{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint216"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), left{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint224"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), left{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint232"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), left{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint24"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), left{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint240"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), left{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint248"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), left{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint256"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), left{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), left{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint40"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), left{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint48"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), left{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint56"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), left{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), left{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint72"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), left{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint8"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), left{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint80"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), left{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint88"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), left{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abi_type_uint96"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), left{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'selector{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_selector"), macro{}(), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(461,20,461,102)"), no-evaluators{}(), left{}(), format{}("%cselector%r %c(%r %1 %c)%r"), alias'Kywd'{}(), function{}()] + symbol Lblabi'Unds'type'Unds'address{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_address"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(34,25,34,99)"), left{}(), format{}("%c#address%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'array{}(SortTypedArg{}, SortInt{}, SortTypedArgs{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_array"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(74,25,74,99)"), left{}(), format{}("%c#array%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'bool{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_bool"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(71,25,71,99)"), left{}(), format{}("%c#bool%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'bytes{}(SortBytes{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_bytes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(72,25,72,99)"), left{}(), format{}("%c#bytes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'bytes32{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_bytes32"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(70,25,70,99)"), left{}(), format{}("%c#bytes32%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'bytes4{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_bytes4"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(69,25,69,99)"), left{}(), format{}("%c#bytes4%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'int128{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_int128"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(68,25,68,99)"), left{}(), format{}("%c#int128%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'int256{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_int256"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(67,25,67,99)"), left{}(), format{}("%c#int256%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'string{}(SortString{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_string"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(73,25,73,99)"), left{}(), format{}("%c#string%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint104{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint104"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(54,25,54,99)"), left{}(), format{}("%c#uint104%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint112{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint112"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,25,53,99)"), left{}(), format{}("%c#uint112%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint120{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint120"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(52,25,52,99)"), left{}(), format{}("%c#uint120%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint128{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint128"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,25,51,99)"), left{}(), format{}("%c#uint128%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint136{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint136"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(50,25,50,99)"), left{}(), format{}("%c#uint136%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint144{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint144"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,25,49,99)"), left{}(), format{}("%c#uint144%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint152{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint152"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(48,25,48,99)"), left{}(), format{}("%c#uint152%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint16{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint16"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,25,65,99)"), left{}(), format{}("%c#uint16%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint160{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint160"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,25,47,99)"), left{}(), format{}("%c#uint160%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint168{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint168"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,25,46,99)"), left{}(), format{}("%c#uint168%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint176{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint176"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,25,45,99)"), left{}(), format{}("%c#uint176%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint184{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint184"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(44,25,44,99)"), left{}(), format{}("%c#uint184%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint192{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint192"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,25,43,99)"), left{}(), format{}("%c#uint192%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint200{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint200"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(42,25,42,99)"), left{}(), format{}("%c#uint200%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint208{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint208"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,25,41,99)"), left{}(), format{}("%c#uint208%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint216{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint216"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(40,25,40,99)"), left{}(), format{}("%c#uint216%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint224{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint224"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,25,39,99)"), left{}(), format{}("%c#uint224%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint232{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint232"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(38,25,38,99)"), left{}(), format{}("%c#uint232%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint24{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint24"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,25,64,99)"), left{}(), format{}("%c#uint24%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint240{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint240"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,25,37,99)"), left{}(), format{}("%c#uint240%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint248{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint248"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,25,36,99)"), left{}(), format{}("%c#uint248%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint256{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint256"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,25,35,99)"), left{}(), format{}("%c#uint256%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint32{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint32"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,25,63,99)"), left{}(), format{}("%c#uint32%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint40{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint40"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(62,25,62,99)"), left{}(), format{}("%c#uint40%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint48{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint48"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,25,61,99)"), left{}(), format{}("%c#uint48%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint56{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint56"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(60,25,60,99)"), left{}(), format{}("%c#uint56%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint64{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint64"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,25,59,99)"), left{}(), format{}("%c#uint64%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint72{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint72"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(58,25,58,99)"), left{}(), format{}("%c#uint72%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint8{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint8"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,25,66,99)"), left{}(), format{}("%c#uint8%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint80{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint80"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,25,57,99)"), left{}(), format{}("%c#uint80%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint88{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint88"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(56,25,56,99)"), left{}(), format{}("%c#uint88%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblabi'Unds'type'Unds'uint96{}(SortInt{}) : SortTypedArg{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/abi.md)"), symbol'Kywd'{}("abi_type_uint96"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,25,55,99)"), left{}(), format{}("%c#uint96%r %c(%r %1 %c)%r"), injective{}()] symbol Lblabs'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(46,20,46,49)"), left{}(), format{}("%cabs%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), right{}(), terminals{}("1101"), klabel{}("absInt"), hook{}("INT.abs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1079,18,1079,119)"), left{}(), format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}()] - symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("accountEmpty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2302,21,2302,103)"), left{}(), format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("bigEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1844,25,1844,62)"), left{}(), format{}("%cBE%r"), injective{}()] - symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/edsl.md)"), symbol'Kywd'{}(), macro{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("binRuntime"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,26,30,111)"), no-evaluators{}(), left{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), alias'Kywd'{}(), function{}()] + symbol LblaccountEmpty{}(SortAccountCode{}, SortInt{}, SortInt{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), symbol'Kywd'{}("accountEmpty"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2302,21,2302,103)"), left{}(), format{}("%c#accountEmpty%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + symbol LblbigEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("bigEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1844,25,1844,62)"), left{}(), format{}("%cBE%r"), injective{}()] + symbol LblbinRuntime{}(SortContract{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/edsl.md)"), symbol'Kywd'{}("binRuntime"), macro{}(), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,26,30,111)"), no-evaluators{}(), left{}(), format{}("%c#binRuntime%r %c(%r %1 %c)%r"), alias'Kywd'{}(), function{}()] symbol Lblbit'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("bit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(185,20,185,49)"), left{}(), format{}("%cbit%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("bitRangeInt"), hook{}("INT.bitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,18,1104,103)"), left{}(), format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101010101010101010101"), klabel{}("blockHeaderHash"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,183)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}()] - symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101010101010101010101010101"), klabel{}("blockHeaderHashBaseFee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,195)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}()] + symbol LblblockHeaderHash{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}("blockHeaderHash"), priorities{}(), right{}(), terminals{}("11010101010101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(64,20,64,183)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c)%r"), function{}()] + symbol LblblockHeaderHashBaseFee{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortInt{}, SortBytes{}, SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}("blockHeaderHashBaseFee"), priorities{}(), right{}(), terminals{}("1101010101010101010101010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(66,20,66,195)"), left{}(), format{}("%c#blockHeaderHash%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c,%r %7 %c,%r %8 %c,%r %9 %c,%r %10 %c,%r %11 %c,%r %12 %c,%r %13 %c,%r %14 %c,%r %15 %c,%r %16 %c)%r"), function{}()] symbol Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool{}(SortBool{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), smtlib{}("bool2Word"), terminals{}("1101"), klabel{}("bool2Word"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(30,20,30,75)"), left{}(), format{}("%cbool2Word%r %c(%r %1 %c)%r"), function{}()] symbol Lblbyte'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("byte"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(186,20,186,49)"), left{}(), format{}("%cbyte%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LblcategoryChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("categoryChar"), hook{}("STRING.category"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1679,21,1679,81)"), left{}(), format{}("%ccategoryChar%r %c(%r %1 %c)%r"), function{}()] @@ -1480,258 +1480,258 @@ module TEST hooked-symbol Lblchoice'LParUndsRParUnds'SET'Unds'KItem'Unds'Set{}(SortSet{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Set:choice"), hook{}("SET.choice"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(614,20,614,95)"), left{}(), format{}("%cchoice%r %c(%r %1 %c)%r"), function{}()] symbol Lblchop'LParUndsRParUnds'WORD'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), total{}(), priorities{}(), right{}(), smtlib{}("chop"), terminals{}("1101"), klabel{}("chop"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(327,20,327,64)"), left{}(), format{}("%cchop%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblchrChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'Int{}(SortInt{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("chrChar"), hook{}("STRING.chr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1539,21,1539,70)"), left{}(), format{}("%cchrChar%r %c(%r %1 %c)%r"), function{}()] - symbol Lblcontract'Unds'AccountParamsTest{}() : SortAccountParamsTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_AccountParamsTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8,42,8,108)"), left{}(), format{}("%cAccountParamsTest%r"), injective{}()] - symbol Lblcontract'Unds'AdditionalToken{}() : SortAdditionalTokenContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_AdditionalToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3192,40,3192,102)"), left{}(), format{}("%cAdditionalToken%r"), injective{}()] - symbol Lblcontract'Unds'AddrTest{}() : SortAddrTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_AddrTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(167,33,167,81)"), left{}(), format{}("%cAddrTest%r"), injective{}()] - symbol Lblcontract'Unds'AllowChangesTest{}() : SortAllowChangesTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_AllowChangesTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,41,301,105)"), left{}(), format{}("%cAllowChangesTest%r"), injective{}()] - symbol Lblcontract'Unds'ArithmeticTest{}() : SortArithmeticTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ArithmeticTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(477,39,477,99)"), left{}(), format{}("%cArithmeticTest%r"), injective{}()] - symbol Lblcontract'Unds'AssertTest{}() : SortAssertTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_AssertTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4000,35,4000,87)"), left{}(), format{}("%cAssertTest%r"), injective{}()] - symbol Lblcontract'Unds'AssumeTest{}() : SortAssumeTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_AssumeTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(696,35,696,87)"), left{}(), format{}("%cAssumeTest%r"), injective{}()] - symbol Lblcontract'Unds'BlockParamsTest{}() : SortBlockParamsTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_BlockParamsTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,40,828,102)"), left{}(), format{}("%cBlockParamsTest%r"), injective{}()] - symbol Lblcontract'Unds'BroadcastTest{}() : SortBroadcastTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_BroadcastTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,38,940,96)"), left{}(), format{}("%cBroadcastTest%r"), injective{}()] - symbol Lblcontract'Unds'BytesTypeTest{}() : SortBytesTypeTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_BytesTypeTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4956,38,4956,96)"), left{}(), format{}("%cBytesTypeTest%r"), injective{}()] - symbol Lblcontract'Unds'Contract{}() : SortContractContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Contract"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,33,1050,81)"), left{}(), format{}("%cContract%r"), injective{}()] - symbol Lblcontract'Unds'ContractBTest{}() : SortContractBTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ContractBTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1146,38,1146,96)"), left{}(), format{}("%cContractBTest%r"), injective{}()] - symbol Lblcontract'Unds'ContractTest{}() : SortContractTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ContractTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,37,1062,93)"), left{}(), format{}("%cContractTest%r"), injective{}()] - symbol Lblcontract'Unds'DSTest{}() : SortDSTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_DSTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6693,31,6693,75)"), left{}(), format{}("%cDSTest%r"), injective{}()] - symbol Lblcontract'Unds'DepthReverter{}() : SortDepthReverterContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_DepthReverter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1746,38,1746,96)"), left{}(), format{}("%cDepthReverter%r"), injective{}()] - symbol Lblcontract'Unds'Dummy{}() : SortDummyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Dummy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1632,30,1632,72)"), left{}(), format{}("%cDummy%r"), injective{}()] - symbol Lblcontract'Unds'DynamicTypes{}() : SortDynamicTypesContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_DynamicTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1251,37,1251,93)"), left{}(), format{}("%cDynamicTypes%r"), injective{}()] - symbol Lblcontract'Unds'EmitContractTest{}() : SortEmitContractTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_EmitContractTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1352,41,1352,105)"), left{}(), format{}("%cEmitContractTest%r"), injective{}()] - symbol Lblcontract'Unds'EnvTest{}() : SortEnvTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_EnvTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1444,32,1444,78)"), left{}(), format{}("%cEnvTest%r"), injective{}()] - symbol Lblcontract'Unds'ExpectCallTest{}() : SortExpectCallTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ExpectCallTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1654,39,1654,99)"), left{}(), format{}("%cExpectCallTest%r"), injective{}()] - symbol Lblcontract'Unds'ExpectEmit{}() : SortExpectEmitContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ExpectEmit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1330,35,1330,87)"), left{}(), format{}("%cExpectEmit%r"), injective{}()] - symbol Lblcontract'Unds'ExpectRevertTest{}() : SortExpectRevertTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ExpectRevertTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1775,41,1775,105)"), left{}(), format{}("%cExpectRevertTest%r"), injective{}()] - symbol Lblcontract'Unds'FfiTest{}() : SortFfiTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_FfiTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1970,32,1970,78)"), left{}(), format{}("%cFfiTest%r"), injective{}()] - symbol Lblcontract'Unds'FilesTest{}() : SortFilesTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_FilesTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2078,34,2078,84)"), left{}(), format{}("%cFilesTest%r"), injective{}()] - symbol Lblcontract'Unds'ForkTest{}() : SortForkTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ForkTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2170,33,2170,81)"), left{}(), format{}("%cForkTest%r"), injective{}()] - symbol Lblcontract'Unds'GetCodeTest{}() : SortGetCodeTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_GetCodeTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2318,36,2318,90)"), left{}(), format{}("%cGetCodeTest%r"), injective{}()] - symbol Lblcontract'Unds'KEVMCheats{}() : SortKEVMCheatsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_KEVMCheats"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2407,35,2407,87)"), left{}(), format{}("%cKEVMCheats%r"), injective{}()] - symbol Lblcontract'Unds'KEVMCheatsBase{}() : SortKEVMCheatsBaseContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_KEVMCheatsBase"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2429,39,2429,99)"), left{}(), format{}("%cKEVMCheatsBase%r"), injective{}()] - symbol Lblcontract'Unds'LabelTest{}() : SortLabelTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_LabelTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2550,34,2550,84)"), left{}(), format{}("%cLabelTest%r"), injective{}()] - symbol Lblcontract'Unds'LoopsTest{}() : SortLoopsTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_LoopsTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2626,34,2626,84)"), left{}(), format{}("%cLoopsTest%r"), injective{}()] - symbol Lblcontract'Unds'MockCallTest{}() : SortMockCallTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_MockCallTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2800,37,2800,93)"), left{}(), format{}("%cMockCallTest%r"), injective{}()] - symbol Lblcontract'Unds'MyIERC20{}() : SortMyIERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_MyIERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2900,33,2900,81)"), left{}(), format{}("%cMyIERC20%r"), injective{}()] - symbol Lblcontract'Unds'MyToken{}() : SortMyTokenContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_MyToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2981,32,2981,78)"), left{}(), format{}("%cMyToken%r"), injective{}()] - symbol Lblcontract'Unds'OwnerUpOnly{}() : SortOwnerUpOnlyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_OwnerUpOnly"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3042,36,3042,90)"), left{}(), format{}("%cOwnerUpOnly%r"), injective{}()] - symbol Lblcontract'Unds'OwnerUpOnlyTest{}() : SortOwnerUpOnlyTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_OwnerUpOnlyTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3087,40,3087,102)"), left{}(), format{}("%cOwnerUpOnlyTest%r"), injective{}()] - symbol Lblcontract'Unds'PlainPrankTest{}() : SortPlainPrankTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_PlainPrankTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3237,39,3237,99)"), left{}(), format{}("%cPlainPrankTest%r"), injective{}()] - symbol Lblcontract'Unds'Prank{}() : SortPrankContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Prank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3369,30,3369,72)"), left{}(), format{}("%cPrank%r"), injective{}()] - symbol Lblcontract'Unds'PrankTest{}() : SortPrankTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_PrankTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3424,34,3424,84)"), left{}(), format{}("%cPrankTest%r"), injective{}()] - symbol Lblcontract'Unds'RecordLogsTest{}() : SortRecordLogsTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_RecordLogsTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3563,39,3563,99)"), left{}(), format{}("%cRecordLogsTest%r"), injective{}()] - symbol Lblcontract'Unds'Reverter{}() : SortReverterContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Reverter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1932,33,1932,81)"), left{}(), format{}("%cReverter%r"), injective{}()] - symbol Lblcontract'Unds'Safe{}() : SortSafeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Safe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3652,29,3652,69)"), left{}(), format{}("%cSafe%r"), injective{}()] - symbol Lblcontract'Unds'SafeTest{}() : SortSafeTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SafeTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3674,33,3674,81)"), left{}(), format{}("%cSafeTest%r"), injective{}()] - symbol Lblcontract'Unds'Script{}() : SortScriptContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Script"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3772,31,3772,75)"), left{}(), format{}("%cScript%r"), injective{}()] - symbol Lblcontract'Unds'SetUpTest{}() : SortSetUpTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SetUpTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3809,34,3809,84)"), left{}(), format{}("%cSetUpTest%r"), injective{}()] - symbol Lblcontract'Unds'SignTest{}() : SortSignTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SignTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3907,33,3907,81)"), left{}(), format{}("%cSignTest%r"), injective{}()] - symbol Lblcontract'Unds'SnapshotTest{}() : SortSnapshotTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SnapshotTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4141,37,4141,93)"), left{}(), format{}("%cSnapshotTest%r"), injective{}()] - symbol Lblcontract'Unds'Store{}() : SortStoreContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Store"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4230,30,4230,72)"), left{}(), format{}("%cStore%r"), injective{}()] - symbol Lblcontract'Unds'StoreTest{}() : SortStoreTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_StoreTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4249,34,4249,84)"), left{}(), format{}("%cStoreTest%r"), injective{}()] - symbol Lblcontract'Unds'SymbolicStorageTest{}() : SortSymbolicStorageTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SymbolicStorageTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4397,44,4397,114)"), left{}(), format{}("%cSymbolicStorageTest%r"), injective{}()] - symbol Lblcontract'Unds'SymbolicStore{}() : SortSymbolicStoreContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_SymbolicStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4491,38,4491,96)"), left{}(), format{}("%cSymbolicStore%r"), injective{}()] - symbol Lblcontract'Unds'Test{}() : SortTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Test"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4510,29,4510,69)"), left{}(), format{}("%cTest%r"), injective{}()] - symbol Lblcontract'Unds'TestNumber{}() : SortTestNumberContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_TestNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4709,35,4709,87)"), left{}(), format{}("%cTestNumber%r"), injective{}()] - symbol Lblcontract'Unds'ToStringTest{}() : SortToStringTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ToStringTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4773,37,4773,93)"), left{}(), format{}("%cToStringTest%r"), injective{}()] - symbol Lblcontract'Unds'Token{}() : SortTokenContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Token"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4889,30,4889,72)"), left{}(), format{}("%cToken%r"), injective{}()] - symbol Lblcontract'Unds'UintTypeTest{}() : SortUintTypeTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_UintTypeTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5032,37,5032,93)"), left{}(), format{}("%cUintTypeTest%r"), injective{}()] - symbol Lblcontract'Unds'ValueStore{}() : SortValueStoreContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_ValueStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(417,35,417,87)"), left{}(), format{}("%cValueStore%r"), injective{}()] - symbol Lblcontract'Unds'Vm{}() : SortVmContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_Vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5918,27,5918,63)"), left{}(), format{}("%cVm%r"), injective{}()] - symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("contract_access_field"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] - symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("contract_access_hash"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), left{}(), format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] - symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("contract_access_index"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), injective{}()] - symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("contract_access_loc"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), left{}(), format{}("%c#loc%r %c(%r %1 %c)%r"), function{}()] - symbol Lblcontract'Unds'console{}() : SortConsoleContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_console"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6669,32,6669,78)"), left{}(), format{}("%cconsole%r"), injective{}()] - symbol Lblcontract'Unds'console2{}() : SortConsole2Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_console2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6681,33,6681,81)"), left{}(), format{}("%cconsole2%r"), injective{}()] - symbol Lblcontract'Unds'stdError{}() : SortStdErrorContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_stdError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4578,33,4578,81)"), left{}(), format{}("%cstdError%r"), injective{}()] - symbol Lblcontract'Unds'stdMath{}() : SortStdMathContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_stdMath"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4672,32,4672,78)"), left{}(), format{}("%cstdMath%r"), injective{}()] - symbol Lblcontract'Unds'stdStorage{}() : SortStdStorageContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("contract_stdStorage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4684,35,4684,87)"), left{}(), format{}("%cstdStorage%r"), injective{}()] + symbol Lblcontract'Unds'AccountParamsTest{}() : SortAccountParamsTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_AccountParamsTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(8,42,8,108)"), left{}(), format{}("%cAccountParamsTest%r"), injective{}()] + symbol Lblcontract'Unds'AdditionalToken{}() : SortAdditionalTokenContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_AdditionalToken"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3192,40,3192,102)"), left{}(), format{}("%cAdditionalToken%r"), injective{}()] + symbol Lblcontract'Unds'AddrTest{}() : SortAddrTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_AddrTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(167,33,167,81)"), left{}(), format{}("%cAddrTest%r"), injective{}()] + symbol Lblcontract'Unds'AllowChangesTest{}() : SortAllowChangesTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_AllowChangesTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(301,41,301,105)"), left{}(), format{}("%cAllowChangesTest%r"), injective{}()] + symbol Lblcontract'Unds'ArithmeticTest{}() : SortArithmeticTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ArithmeticTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(477,39,477,99)"), left{}(), format{}("%cArithmeticTest%r"), injective{}()] + symbol Lblcontract'Unds'AssertTest{}() : SortAssertTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_AssertTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4000,35,4000,87)"), left{}(), format{}("%cAssertTest%r"), injective{}()] + symbol Lblcontract'Unds'AssumeTest{}() : SortAssumeTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_AssumeTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(696,35,696,87)"), left{}(), format{}("%cAssumeTest%r"), injective{}()] + symbol Lblcontract'Unds'BlockParamsTest{}() : SortBlockParamsTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_BlockParamsTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(828,40,828,102)"), left{}(), format{}("%cBlockParamsTest%r"), injective{}()] + symbol Lblcontract'Unds'BroadcastTest{}() : SortBroadcastTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_BroadcastTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(940,38,940,96)"), left{}(), format{}("%cBroadcastTest%r"), injective{}()] + symbol Lblcontract'Unds'BytesTypeTest{}() : SortBytesTypeTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_BytesTypeTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4956,38,4956,96)"), left{}(), format{}("%cBytesTypeTest%r"), injective{}()] + symbol Lblcontract'Unds'Contract{}() : SortContractContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Contract"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1050,33,1050,81)"), left{}(), format{}("%cContract%r"), injective{}()] + symbol Lblcontract'Unds'ContractBTest{}() : SortContractBTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ContractBTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1146,38,1146,96)"), left{}(), format{}("%cContractBTest%r"), injective{}()] + symbol Lblcontract'Unds'ContractTest{}() : SortContractTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ContractTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1062,37,1062,93)"), left{}(), format{}("%cContractTest%r"), injective{}()] + symbol Lblcontract'Unds'DSTest{}() : SortDSTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_DSTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6693,31,6693,75)"), left{}(), format{}("%cDSTest%r"), injective{}()] + symbol Lblcontract'Unds'DepthReverter{}() : SortDepthReverterContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_DepthReverter"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1746,38,1746,96)"), left{}(), format{}("%cDepthReverter%r"), injective{}()] + symbol Lblcontract'Unds'Dummy{}() : SortDummyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Dummy"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1632,30,1632,72)"), left{}(), format{}("%cDummy%r"), injective{}()] + symbol Lblcontract'Unds'DynamicTypes{}() : SortDynamicTypesContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_DynamicTypes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1251,37,1251,93)"), left{}(), format{}("%cDynamicTypes%r"), injective{}()] + symbol Lblcontract'Unds'EmitContractTest{}() : SortEmitContractTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_EmitContractTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1352,41,1352,105)"), left{}(), format{}("%cEmitContractTest%r"), injective{}()] + symbol Lblcontract'Unds'EnvTest{}() : SortEnvTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_EnvTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1444,32,1444,78)"), left{}(), format{}("%cEnvTest%r"), injective{}()] + symbol Lblcontract'Unds'ExpectCallTest{}() : SortExpectCallTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ExpectCallTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1654,39,1654,99)"), left{}(), format{}("%cExpectCallTest%r"), injective{}()] + symbol Lblcontract'Unds'ExpectEmit{}() : SortExpectEmitContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ExpectEmit"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1330,35,1330,87)"), left{}(), format{}("%cExpectEmit%r"), injective{}()] + symbol Lblcontract'Unds'ExpectRevertTest{}() : SortExpectRevertTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ExpectRevertTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1775,41,1775,105)"), left{}(), format{}("%cExpectRevertTest%r"), injective{}()] + symbol Lblcontract'Unds'FfiTest{}() : SortFfiTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_FfiTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1970,32,1970,78)"), left{}(), format{}("%cFfiTest%r"), injective{}()] + symbol Lblcontract'Unds'FilesTest{}() : SortFilesTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_FilesTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2078,34,2078,84)"), left{}(), format{}("%cFilesTest%r"), injective{}()] + symbol Lblcontract'Unds'ForkTest{}() : SortForkTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ForkTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2170,33,2170,81)"), left{}(), format{}("%cForkTest%r"), injective{}()] + symbol Lblcontract'Unds'GetCodeTest{}() : SortGetCodeTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_GetCodeTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2318,36,2318,90)"), left{}(), format{}("%cGetCodeTest%r"), injective{}()] + symbol Lblcontract'Unds'KEVMCheats{}() : SortKEVMCheatsContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_KEVMCheats"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2407,35,2407,87)"), left{}(), format{}("%cKEVMCheats%r"), injective{}()] + symbol Lblcontract'Unds'KEVMCheatsBase{}() : SortKEVMCheatsBaseContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_KEVMCheatsBase"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2429,39,2429,99)"), left{}(), format{}("%cKEVMCheatsBase%r"), injective{}()] + symbol Lblcontract'Unds'LabelTest{}() : SortLabelTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_LabelTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2550,34,2550,84)"), left{}(), format{}("%cLabelTest%r"), injective{}()] + symbol Lblcontract'Unds'LoopsTest{}() : SortLoopsTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_LoopsTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2626,34,2626,84)"), left{}(), format{}("%cLoopsTest%r"), injective{}()] + symbol Lblcontract'Unds'MockCallTest{}() : SortMockCallTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_MockCallTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2800,37,2800,93)"), left{}(), format{}("%cMockCallTest%r"), injective{}()] + symbol Lblcontract'Unds'MyIERC20{}() : SortMyIERC20Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_MyIERC20"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2900,33,2900,81)"), left{}(), format{}("%cMyIERC20%r"), injective{}()] + symbol Lblcontract'Unds'MyToken{}() : SortMyTokenContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_MyToken"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2981,32,2981,78)"), left{}(), format{}("%cMyToken%r"), injective{}()] + symbol Lblcontract'Unds'OwnerUpOnly{}() : SortOwnerUpOnlyContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_OwnerUpOnly"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3042,36,3042,90)"), left{}(), format{}("%cOwnerUpOnly%r"), injective{}()] + symbol Lblcontract'Unds'OwnerUpOnlyTest{}() : SortOwnerUpOnlyTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_OwnerUpOnlyTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3087,40,3087,102)"), left{}(), format{}("%cOwnerUpOnlyTest%r"), injective{}()] + symbol Lblcontract'Unds'PlainPrankTest{}() : SortPlainPrankTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_PlainPrankTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3237,39,3237,99)"), left{}(), format{}("%cPlainPrankTest%r"), injective{}()] + symbol Lblcontract'Unds'Prank{}() : SortPrankContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Prank"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3369,30,3369,72)"), left{}(), format{}("%cPrank%r"), injective{}()] + symbol Lblcontract'Unds'PrankTest{}() : SortPrankTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_PrankTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3424,34,3424,84)"), left{}(), format{}("%cPrankTest%r"), injective{}()] + symbol Lblcontract'Unds'RecordLogsTest{}() : SortRecordLogsTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_RecordLogsTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3563,39,3563,99)"), left{}(), format{}("%cRecordLogsTest%r"), injective{}()] + symbol Lblcontract'Unds'Reverter{}() : SortReverterContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Reverter"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1932,33,1932,81)"), left{}(), format{}("%cReverter%r"), injective{}()] + symbol Lblcontract'Unds'Safe{}() : SortSafeContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Safe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3652,29,3652,69)"), left{}(), format{}("%cSafe%r"), injective{}()] + symbol Lblcontract'Unds'SafeTest{}() : SortSafeTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SafeTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3674,33,3674,81)"), left{}(), format{}("%cSafeTest%r"), injective{}()] + symbol Lblcontract'Unds'Script{}() : SortScriptContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Script"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3772,31,3772,75)"), left{}(), format{}("%cScript%r"), injective{}()] + symbol Lblcontract'Unds'SetUpTest{}() : SortSetUpTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SetUpTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3809,34,3809,84)"), left{}(), format{}("%cSetUpTest%r"), injective{}()] + symbol Lblcontract'Unds'SignTest{}() : SortSignTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SignTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3907,33,3907,81)"), left{}(), format{}("%cSignTest%r"), injective{}()] + symbol Lblcontract'Unds'SnapshotTest{}() : SortSnapshotTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SnapshotTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4141,37,4141,93)"), left{}(), format{}("%cSnapshotTest%r"), injective{}()] + symbol Lblcontract'Unds'Store{}() : SortStoreContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Store"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4230,30,4230,72)"), left{}(), format{}("%cStore%r"), injective{}()] + symbol Lblcontract'Unds'StoreTest{}() : SortStoreTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_StoreTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4249,34,4249,84)"), left{}(), format{}("%cStoreTest%r"), injective{}()] + symbol Lblcontract'Unds'SymbolicStorageTest{}() : SortSymbolicStorageTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SymbolicStorageTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4397,44,4397,114)"), left{}(), format{}("%cSymbolicStorageTest%r"), injective{}()] + symbol Lblcontract'Unds'SymbolicStore{}() : SortSymbolicStoreContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_SymbolicStore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4491,38,4491,96)"), left{}(), format{}("%cSymbolicStore%r"), injective{}()] + symbol Lblcontract'Unds'Test{}() : SortTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Test"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4510,29,4510,69)"), left{}(), format{}("%cTest%r"), injective{}()] + symbol Lblcontract'Unds'TestNumber{}() : SortTestNumberContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_TestNumber"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4709,35,4709,87)"), left{}(), format{}("%cTestNumber%r"), injective{}()] + symbol Lblcontract'Unds'ToStringTest{}() : SortToStringTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ToStringTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4773,37,4773,93)"), left{}(), format{}("%cToStringTest%r"), injective{}()] + symbol Lblcontract'Unds'Token{}() : SortTokenContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Token"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4889,30,4889,72)"), left{}(), format{}("%cToken%r"), injective{}()] + symbol Lblcontract'Unds'UintTypeTest{}() : SortUintTypeTestContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_UintTypeTest"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5032,37,5032,93)"), left{}(), format{}("%cUintTypeTest%r"), injective{}()] + symbol Lblcontract'Unds'ValueStore{}() : SortValueStoreContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_ValueStore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(417,35,417,87)"), left{}(), format{}("%cValueStore%r"), injective{}()] + symbol Lblcontract'Unds'Vm{}() : SortVmContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_Vm"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5918,27,5918,63)"), left{}(), format{}("%cVm%r"), injective{}()] + symbol Lblcontract'Unds'access'Unds'field{}(SortContractAccess{}, SortField{}) : SortContractAccess{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}("contract_access_field"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(81,31,81,97)"), left{}(), format{}("%1 %c.%r %2"), injective{}()] + symbol Lblcontract'Unds'access'Unds'hash{}(SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}("contract_access_hash"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(90,20,90,88)"), left{}(), format{}("%c#hash%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] + symbol Lblcontract'Unds'access'Unds'index{}(SortContractAccess{}, SortInt{}) : SortContractAccess{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}("contract_access_index"), priorities{}(), right{}(), terminals{}("0101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(82,31,82,97)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), injective{}()] + symbol Lblcontract'Unds'access'Unds'loc{}(SortContractAccess{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/hashed-locations.md)"), symbol'Kywd'{}("contract_access_loc"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(85,20,85,91)"), left{}(), format{}("%c#loc%r %c(%r %1 %c)%r"), function{}()] + symbol Lblcontract'Unds'console{}() : SortConsoleContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_console"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6669,32,6669,78)"), left{}(), format{}("%cconsole%r"), injective{}()] + symbol Lblcontract'Unds'console2{}() : SortConsole2Contract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_console2"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6681,33,6681,81)"), left{}(), format{}("%cconsole2%r"), injective{}()] + symbol Lblcontract'Unds'stdError{}() : SortStdErrorContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_stdError"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4578,33,4578,81)"), left{}(), format{}("%cstdError%r"), injective{}()] + symbol Lblcontract'Unds'stdMath{}() : SortStdMathContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_stdMath"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4672,32,4672,78)"), left{}(), format{}("%cstdMath%r"), injective{}()] + symbol Lblcontract'Unds'stdStorage{}() : SortStdStorageContract{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("contract_stdStorage"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4684,35,4684,87)"), left{}(), format{}("%cstdStorage%r"), injective{}()] hooked-symbol LblcountAllOccurrences'LParUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("110101"), hook{}("STRING.countAllOccurrences"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1652,18,1652,146)"), left{}(), format{}("%ccountAllOccurrences%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LbldecodeBytes'LParUndsCommUndsRParUnds'BYTES-STRING-ENCODE'Unds'String'Unds'String'Unds'Bytes{}(SortString{}, SortBytes{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("decodeBytes"), hook{}("BYTES.decodeBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1816,23,1816,109)"), left{}(), format{}("%cdecodeBytes%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol LbldirectionalityChar'LParUndsRParUnds'STRING-COMMON'Unds'String'Unds'String{}(SortString{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("directionalityChar"), hook{}("STRING.directionality"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1680,21,1680,87)"), left{}(), format{}("%cdirectionalityChar%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblencodeBytes'LParUndsCommUndsRParUnds'BYTES-STRING-ENCODE'Unds'Bytes'Unds'String'Unds'String{}(SortString{}, SortString{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("encodeBytes"), hook{}("BYTES.encodeBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1817,22,1817,109)"), left{}(), format{}("%cencodeBytes%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol Lbleth'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(249,20,249,33)"), left{}(), format{}("%ceth%r"), injective{}()] - symbol Lblfield'Unds'AccountParamsTest'Unds'IS'Unds'SCRIPT{}() : SortAccountParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AccountParamsTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,39,19,104)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'AccountParamsTest'Unds'IS'Unds'TEST{}() : SortAccountParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AccountParamsTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,39,15,100)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'AccountParamsTest'UndsUnds'failed{}() : SortAccountParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AccountParamsTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,39,17,100)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'AccountParamsTest'Unds'stdstore{}() : SortAccountParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AccountParamsTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,39,21,102)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'AdditionalToken'Unds'count{}() : SortAdditionalTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AdditionalToken_count"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3199,37,3199,92)"), left{}(), format{}("%ccount%r"), injective{}()] - symbol Lblfield'Unds'AddrTest'Unds'IS'Unds'SCRIPT{}() : SortAddrTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AddrTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(178,30,178,86)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'AddrTest'Unds'IS'Unds'TEST{}() : SortAddrTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AddrTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,30,174,82)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'AddrTest'UndsUnds'failed{}() : SortAddrTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AddrTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(176,30,176,82)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'AddrTest'Unds'stdstore{}() : SortAddrTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AddrTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(180,30,180,84)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'AllowChangesTest'Unds'IS'Unds'SCRIPT{}() : SortAllowChangesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AllowChangesTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(312,38,312,102)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'AllowChangesTest'Unds'IS'Unds'TEST{}() : SortAllowChangesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AllowChangesTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(308,38,308,98)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'AllowChangesTest'UndsUnds'failed{}() : SortAllowChangesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AllowChangesTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,38,310,98)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'AllowChangesTest'Unds'stdstore{}() : SortAllowChangesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AllowChangesTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(314,38,314,100)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'ArithmeticTest'Unds'IS'Unds'SCRIPT{}() : SortArithmeticTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ArithmeticTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,36,488,98)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'ArithmeticTest'Unds'IS'Unds'TEST{}() : SortArithmeticTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ArithmeticTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(484,36,484,94)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'ArithmeticTest'UndsUnds'failed{}() : SortArithmeticTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ArithmeticTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(486,36,486,94)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'ArithmeticTest'Unds'stdstore{}() : SortArithmeticTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ArithmeticTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(490,36,490,96)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'AssertTest'Unds'IS'Unds'SCRIPT{}() : SortAssertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AssertTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4011,32,4011,90)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'AssertTest'Unds'IS'Unds'TEST{}() : SortAssertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AssertTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4007,32,4007,86)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'AssertTest'UndsUnds'failed{}() : SortAssertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AssertTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4009,32,4009,86)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'AssertTest'Unds'stdstore{}() : SortAssertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AssertTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4013,32,4013,88)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'AssertTest'Unds'y{}() : SortAssertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AssertTest_y"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4015,32,4015,74)"), left{}(), format{}("%cy%r"), injective{}()] - symbol Lblfield'Unds'AssumeTest'Unds'IS'Unds'SCRIPT{}() : SortAssumeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AssumeTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(707,32,707,90)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'AssumeTest'Unds'IS'Unds'TEST{}() : SortAssumeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AssumeTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(703,32,703,86)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'AssumeTest'UndsUnds'failed{}() : SortAssumeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AssumeTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(705,32,705,86)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'AssumeTest'Unds'stdstore{}() : SortAssumeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_AssumeTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(709,32,709,88)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'BlockParamsTest'Unds'IS'Unds'SCRIPT{}() : SortBlockParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_BlockParamsTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(839,37,839,100)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'BlockParamsTest'Unds'IS'Unds'TEST{}() : SortBlockParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_BlockParamsTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(835,37,835,96)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'BlockParamsTest'UndsUnds'failed{}() : SortBlockParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_BlockParamsTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(837,37,837,96)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'BlockParamsTest'Unds'stdstore{}() : SortBlockParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_BlockParamsTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(841,37,841,98)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'BroadcastTest'Unds'ACCOUNT'Unds'A{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_BroadcastTest_ACCOUNT_A"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,35,955,96)"), left{}(), format{}("%cACCOUNT_A%r"), injective{}()] - symbol Lblfield'Unds'BroadcastTest'Unds'ACCOUNT'Unds'B{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_BroadcastTest_ACCOUNT_B"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(957,35,957,96)"), left{}(), format{}("%cACCOUNT_B%r"), injective{}()] - symbol Lblfield'Unds'BroadcastTest'Unds'IS'Unds'SCRIPT{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_BroadcastTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,35,951,96)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'BroadcastTest'Unds'IS'Unds'TEST{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_BroadcastTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(947,35,947,92)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'BroadcastTest'UndsUnds'failed{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_BroadcastTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(949,35,949,92)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'BroadcastTest'Unds'stdstore{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_BroadcastTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,35,953,94)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'ContractBTest'Unds'IS'Unds'SCRIPT{}() : SortContractBTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ContractBTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1157,35,1157,96)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'ContractBTest'Unds'IS'Unds'TEST{}() : SortContractBTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ContractBTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1153,35,1153,92)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'ContractBTest'UndsUnds'failed{}() : SortContractBTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ContractBTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1155,35,1155,92)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'ContractBTest'Unds'stdstore{}() : SortContractBTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ContractBTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1159,35,1159,94)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'ContractBTest'Unds'testNumber{}() : SortContractBTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ContractBTest_testNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1161,35,1161,98)"), left{}(), format{}("%ctestNumber%r"), injective{}()] - symbol Lblfield'Unds'ContractTest'Unds'IS'Unds'SCRIPT{}() : SortContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ContractTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1073,34,1073,94)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'ContractTest'Unds'IS'Unds'TEST{}() : SortContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ContractTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1069,34,1069,90)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'ContractTest'UndsUnds'failed{}() : SortContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ContractTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1071,34,1071,90)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'ContractTest'Unds'stdstore{}() : SortContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ContractTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1075,34,1075,92)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'DSTest'Unds'IS'Unds'TEST{}() : SortDSTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_DSTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6700,28,6700,78)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'DSTest'UndsUnds'failed{}() : SortDSTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_DSTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6702,28,6702,78)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'DepthReverter'Unds'reverter{}() : SortDepthReverterField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_DepthReverter_reverter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1753,35,1753,94)"), left{}(), format{}("%creverter%r"), injective{}()] - symbol Lblfield'Unds'DynamicTypes'Unds'IS'Unds'SCRIPT{}() : SortDynamicTypesField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_DynamicTypes_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1262,34,1262,94)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'DynamicTypes'Unds'IS'Unds'TEST{}() : SortDynamicTypesField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_DynamicTypes_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1258,34,1258,90)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'DynamicTypes'UndsUnds'failed{}() : SortDynamicTypesField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_DynamicTypes__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1260,34,1260,90)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'DynamicTypes'Unds'stdstore{}() : SortDynamicTypesField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_DynamicTypes_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1264,34,1264,92)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'EmitContractTest'Unds'IS'Unds'SCRIPT{}() : SortEmitContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_EmitContractTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1363,38,1363,102)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'EmitContractTest'Unds'IS'Unds'TEST{}() : SortEmitContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_EmitContractTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1359,38,1359,98)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'EmitContractTest'UndsUnds'failed{}() : SortEmitContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_EmitContractTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1361,38,1361,98)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'EmitContractTest'Unds'stdstore{}() : SortEmitContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_EmitContractTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1365,38,1365,100)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'EnvTest'Unds'IS'Unds'SCRIPT{}() : SortEnvTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_EnvTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1455,29,1455,84)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'EnvTest'Unds'IS'Unds'TEST{}() : SortEnvTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_EnvTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1451,29,1451,80)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'EnvTest'UndsUnds'failed{}() : SortEnvTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_EnvTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1453,29,1453,80)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'EnvTest'Unds'stdstore{}() : SortEnvTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_EnvTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1457,29,1457,82)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'ExpectCallTest'Unds'IS'Unds'SCRIPT{}() : SortExpectCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ExpectCallTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1665,36,1665,98)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'ExpectCallTest'Unds'IS'Unds'TEST{}() : SortExpectCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ExpectCallTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1661,36,1661,94)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'ExpectCallTest'UndsUnds'failed{}() : SortExpectCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ExpectCallTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1663,36,1663,94)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'ExpectCallTest'Unds'stdstore{}() : SortExpectCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ExpectCallTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1667,36,1667,96)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'ExpectRevertTest'Unds'IS'Unds'SCRIPT{}() : SortExpectRevertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ExpectRevertTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1786,38,1786,102)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'ExpectRevertTest'Unds'IS'Unds'TEST{}() : SortExpectRevertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ExpectRevertTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1782,38,1782,98)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'ExpectRevertTest'UndsUnds'failed{}() : SortExpectRevertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ExpectRevertTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1784,38,1784,98)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'ExpectRevertTest'Unds'stdstore{}() : SortExpectRevertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ExpectRevertTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,38,1788,100)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'FfiTest'Unds'IS'Unds'SCRIPT{}() : SortFfiTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_FfiTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1981,29,1981,84)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'FfiTest'Unds'IS'Unds'TEST{}() : SortFfiTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_FfiTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1977,29,1977,80)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'FfiTest'UndsUnds'failed{}() : SortFfiTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_FfiTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1979,29,1979,80)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'FfiTest'Unds'stdstore{}() : SortFfiTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_FfiTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1983,29,1983,82)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'FilesTest'Unds'IS'Unds'SCRIPT{}() : SortFilesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_FilesTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2089,31,2089,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'FilesTest'Unds'IS'Unds'TEST{}() : SortFilesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_FilesTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2085,31,2085,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'FilesTest'UndsUnds'failed{}() : SortFilesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_FilesTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2087,31,2087,84)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'FilesTest'Unds'stdstore{}() : SortFilesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_FilesTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2091,31,2091,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'ForkTest'Unds'IS'Unds'SCRIPT{}() : SortForkTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ForkTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2181,30,2181,86)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'ForkTest'Unds'IS'Unds'TEST{}() : SortForkTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ForkTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2177,30,2177,82)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'ForkTest'UndsUnds'failed{}() : SortForkTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ForkTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2179,30,2179,82)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'ForkTest'Unds'stdstore{}() : SortForkTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ForkTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2183,30,2183,84)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'GetCodeTest'Unds'IS'Unds'SCRIPT{}() : SortGetCodeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_GetCodeTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2329,33,2329,92)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'GetCodeTest'Unds'IS'Unds'TEST{}() : SortGetCodeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_GetCodeTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2325,33,2325,88)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'GetCodeTest'UndsUnds'failed{}() : SortGetCodeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_GetCodeTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2327,33,2327,88)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'GetCodeTest'Unds'myToken{}() : SortGetCodeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_GetCodeTest_myToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2333,33,2333,88)"), left{}(), format{}("%cmyToken%r"), injective{}()] - symbol Lblfield'Unds'GetCodeTest'Unds'stdstore{}() : SortGetCodeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_GetCodeTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2331,33,2331,90)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'LabelTest'Unds'IS'Unds'SCRIPT{}() : SortLabelTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_LabelTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2561,31,2561,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'LabelTest'Unds'IS'Unds'TEST{}() : SortLabelTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_LabelTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2557,31,2557,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'LabelTest'UndsUnds'failed{}() : SortLabelTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_LabelTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2559,31,2559,84)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'LabelTest'Unds'stdstore{}() : SortLabelTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_LabelTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2563,31,2563,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'LoopsTest'Unds'IS'Unds'SCRIPT{}() : SortLoopsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_LoopsTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2637,31,2637,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'LoopsTest'Unds'IS'Unds'TEST{}() : SortLoopsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_LoopsTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2633,31,2633,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'LoopsTest'UndsUnds'failed{}() : SortLoopsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_LoopsTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2635,31,2635,84)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'LoopsTest'Unds'stdstore{}() : SortLoopsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_LoopsTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2639,31,2639,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'MockCallTest'Unds'IS'Unds'SCRIPT{}() : SortMockCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_MockCallTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2811,34,2811,94)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'MockCallTest'Unds'IS'Unds'TEST{}() : SortMockCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_MockCallTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2807,34,2807,90)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'MockCallTest'UndsUnds'failed{}() : SortMockCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_MockCallTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2809,34,2809,90)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'MockCallTest'Unds'stdstore{}() : SortMockCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_MockCallTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2813,34,2813,92)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'MyToken'Unds'balances{}() : SortMyTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_MyToken_balances"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2990,29,2990,82)"), left{}(), format{}("%cbalances%r"), injective{}()] - symbol Lblfield'Unds'MyToken'Unds'token{}() : SortMyTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_MyToken_token"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2988,29,2988,76)"), left{}(), format{}("%ctoken%r"), injective{}()] - symbol Lblfield'Unds'OwnerUpOnlyTest'Unds'IS'Unds'SCRIPT{}() : SortOwnerUpOnlyTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_OwnerUpOnlyTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3098,37,3098,100)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'OwnerUpOnlyTest'Unds'IS'Unds'TEST{}() : SortOwnerUpOnlyTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_OwnerUpOnlyTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3094,37,3094,96)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'OwnerUpOnlyTest'UndsUnds'failed{}() : SortOwnerUpOnlyTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_OwnerUpOnlyTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3096,37,3096,96)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'OwnerUpOnlyTest'Unds'stdstore{}() : SortOwnerUpOnlyTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_OwnerUpOnlyTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3100,37,3100,98)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'OwnerUpOnlyTest'Unds'upOnly{}() : SortOwnerUpOnlyTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_OwnerUpOnlyTest_upOnly"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3102,37,3102,94)"), left{}(), format{}("%cupOnly%r"), injective{}()] - symbol Lblfield'Unds'OwnerUpOnly'Unds'count{}() : SortOwnerUpOnlyField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_OwnerUpOnly_count"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3049,33,3049,84)"), left{}(), format{}("%ccount%r"), injective{}()] - symbol Lblfield'Unds'PlainPrankTest'Unds'IS'Unds'SCRIPT{}() : SortPlainPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_PlainPrankTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3248,36,3248,98)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'PlainPrankTest'Unds'IS'Unds'TEST{}() : SortPlainPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_PlainPrankTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3244,36,3244,94)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'PlainPrankTest'UndsUnds'failed{}() : SortPlainPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_PlainPrankTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3246,36,3246,94)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'PlainPrankTest'Unds'stdstore{}() : SortPlainPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_PlainPrankTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3250,36,3250,96)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'PrankTest'Unds'IS'Unds'SCRIPT{}() : SortPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_PrankTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3435,31,3435,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'PrankTest'Unds'IS'Unds'TEST{}() : SortPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_PrankTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3431,31,3431,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'PrankTest'UndsUnds'failed{}() : SortPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_PrankTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3433,31,3433,84)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'PrankTest'Unds'prankContract{}() : SortPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_PrankTest_prankContract"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3439,31,3439,96)"), left{}(), format{}("%cprankContract%r"), injective{}()] - symbol Lblfield'Unds'PrankTest'Unds'stdstore{}() : SortPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_PrankTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3437,31,3437,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'Prank'Unds'count{}() : SortPrankField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Prank_count"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3376,27,3376,72)"), left{}(), format{}("%ccount%r"), injective{}()] - symbol Lblfield'Unds'RecordLogsTest'Unds'IS'Unds'SCRIPT{}() : SortRecordLogsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_RecordLogsTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3574,36,3574,98)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'RecordLogsTest'Unds'IS'Unds'TEST{}() : SortRecordLogsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_RecordLogsTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3570,36,3570,94)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'RecordLogsTest'UndsUnds'failed{}() : SortRecordLogsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_RecordLogsTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3572,36,3572,94)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'RecordLogsTest'Unds'emitter{}() : SortRecordLogsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_RecordLogsTest_emitter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3578,36,3578,94)"), left{}(), format{}("%cemitter%r"), injective{}()] - symbol Lblfield'Unds'RecordLogsTest'Unds'stdstore{}() : SortRecordLogsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_RecordLogsTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3576,36,3576,96)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'SafeTest'Unds'IS'Unds'SCRIPT{}() : SortSafeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SafeTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3685,30,3685,86)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'SafeTest'Unds'IS'Unds'TEST{}() : SortSafeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SafeTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3681,30,3681,82)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'SafeTest'UndsUnds'failed{}() : SortSafeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SafeTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3683,30,3683,82)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'SafeTest'Unds'safe{}() : SortSafeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SafeTest_safe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3689,30,3689,76)"), left{}(), format{}("%csafe%r"), injective{}()] - symbol Lblfield'Unds'SafeTest'Unds'stdstore{}() : SortSafeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SafeTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3687,30,3687,84)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'Script'Unds'IS'Unds'SCRIPT{}() : SortScriptField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Script_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3779,28,3779,82)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'SetUpTest'Unds'IS'Unds'SCRIPT{}() : SortSetUpTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SetUpTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3820,31,3820,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'SetUpTest'Unds'IS'Unds'TEST{}() : SortSetUpTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SetUpTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3816,31,3816,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'SetUpTest'UndsUnds'failed{}() : SortSetUpTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SetUpTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3818,31,3818,84)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'SetUpTest'Unds'counter{}() : SortSetUpTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SetUpTest_counter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3824,31,3824,84)"), left{}(), format{}("%ccounter%r"), injective{}()] - symbol Lblfield'Unds'SetUpTest'Unds'stdstore{}() : SortSetUpTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SetUpTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3822,31,3822,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'SignTest'Unds'IS'Unds'SCRIPT{}() : SortSignTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SignTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3918,30,3918,86)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'SignTest'Unds'IS'Unds'TEST{}() : SortSignTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SignTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3914,30,3914,82)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'SignTest'UndsUnds'failed{}() : SortSignTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SignTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3916,30,3916,82)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'SignTest'Unds'stdstore{}() : SortSignTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SignTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3920,30,3920,84)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'SnapshotTest'Unds'IS'Unds'SCRIPT{}() : SortSnapshotTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SnapshotTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4152,34,4152,94)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'SnapshotTest'Unds'IS'Unds'TEST{}() : SortSnapshotTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SnapshotTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4148,34,4148,90)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'SnapshotTest'UndsUnds'failed{}() : SortSnapshotTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SnapshotTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4150,34,4150,90)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'SnapshotTest'Unds'stdstore{}() : SortSnapshotTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SnapshotTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4154,34,4154,92)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'SnapshotTest'Unds'store{}() : SortSnapshotTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SnapshotTest_store"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4156,34,4156,86)"), left{}(), format{}("%cstore%r"), injective{}()] - symbol Lblfield'Unds'StoreTest'Unds'IS'Unds'SCRIPT{}() : SortStoreTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_StoreTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4260,31,4260,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'StoreTest'Unds'IS'Unds'TEST{}() : SortStoreTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_StoreTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4256,31,4256,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'StoreTest'UndsUnds'failed{}() : SortStoreTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_StoreTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4258,31,4258,84)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'StoreTest'Unds'stdstore{}() : SortStoreTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_StoreTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4262,31,4262,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'Store'Unds'testNumber{}() : SortStoreField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Store_testNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4237,27,4237,82)"), left{}(), format{}("%ctestNumber%r"), injective{}()] - symbol Lblfield'Unds'SymbolicStorageTest'Unds'IS'Unds'SCRIPT{}() : SortSymbolicStorageTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SymbolicStorageTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4408,41,4408,108)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'SymbolicStorageTest'Unds'IS'Unds'TEST{}() : SortSymbolicStorageTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SymbolicStorageTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4404,41,4404,104)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'SymbolicStorageTest'UndsUnds'failed{}() : SortSymbolicStorageTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SymbolicStorageTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4406,41,4406,104)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'SymbolicStorageTest'Unds'stdstore{}() : SortSymbolicStorageTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SymbolicStorageTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4410,41,4410,106)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'SymbolicStore'Unds'testNumber{}() : SortSymbolicStoreField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_SymbolicStore_testNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4498,35,4498,98)"), left{}(), format{}("%ctestNumber%r"), injective{}()] - symbol Lblfield'Unds'TestNumber'Unds'IS'Unds'TEST{}() : SortTestNumberField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_TestNumber_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4716,32,4716,86)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'TestNumber'UndsUnds'failed{}() : SortTestNumberField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_TestNumber__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4718,32,4718,86)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'TestNumber'Unds'testNumber{}() : SortTestNumberField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_TestNumber_testNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4720,32,4720,92)"), left{}(), format{}("%ctestNumber%r"), injective{}()] - symbol Lblfield'Unds'Test'Unds'IS'Unds'SCRIPT{}() : SortTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Test_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4521,26,4521,78)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'Test'Unds'IS'Unds'TEST{}() : SortTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Test_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4517,26,4517,74)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'Test'UndsUnds'failed{}() : SortTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Test__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4519,26,4519,74)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'Test'Unds'stdstore{}() : SortTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Test_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4523,26,4523,76)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'ToStringTest'Unds'IS'Unds'SCRIPT{}() : SortToStringTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ToStringTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4784,34,4784,94)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] - symbol Lblfield'Unds'ToStringTest'Unds'IS'Unds'TEST{}() : SortToStringTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ToStringTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4780,34,4780,90)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] - symbol Lblfield'Unds'ToStringTest'UndsUnds'failed{}() : SortToStringTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ToStringTest__failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4782,34,4782,90)"), left{}(), format{}("%c_failed%r"), injective{}()] - symbol Lblfield'Unds'ToStringTest'Unds'stdstore{}() : SortToStringTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ToStringTest_stdstore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4786,34,4786,92)"), left{}(), format{}("%cstdstore%r"), injective{}()] - symbol Lblfield'Unds'Token'Unds'a{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Token_a"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4908,27,4908,64)"), left{}(), format{}("%ca%r"), injective{}()] - symbol Lblfield'Unds'Token'Unds'allowances{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Token_allowances"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4900,27,4900,82)"), left{}(), format{}("%callowances%r"), injective{}()] - symbol Lblfield'Unds'Token'Unds'balances{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Token_balances"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4898,27,4898,78)"), left{}(), format{}("%cbalances%r"), injective{}()] - symbol Lblfield'Unds'Token'Unds'foos{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Token_foos"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4910,27,4910,70)"), left{}(), format{}("%cfoos%r"), injective{}()] - symbol Lblfield'Unds'Token'Unds'name{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Token_name"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4902,27,4902,70)"), left{}(), format{}("%cname%r"), injective{}()] - symbol Lblfield'Unds'Token'Unds'x{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Token_x"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4896,27,4896,64)"), left{}(), format{}("%cx%r"), injective{}()] - symbol Lblfield'Unds'Token'Unds'y{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Token_y"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4904,27,4904,64)"), left{}(), format{}("%cy%r"), injective{}()] - symbol Lblfield'Unds'Token'Unds'z{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_Token_z"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4906,27,4906,64)"), left{}(), format{}("%cz%r"), injective{}()] - symbol Lblfield'Unds'ValueStore'Unds'value1{}() : SortValueStoreField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ValueStore_value1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(424,32,424,84)"), left{}(), format{}("%cvalue1%r"), injective{}()] - symbol Lblfield'Unds'ValueStore'Unds'value2{}() : SortValueStoreField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("field_ValueStore_value2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(426,32,426,84)"), left{}(), format{}("%cvalue2%r"), injective{}()] + symbol Lblfield'Unds'AccountParamsTest'Unds'IS'Unds'SCRIPT{}() : SortAccountParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AccountParamsTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(19,39,19,104)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'AccountParamsTest'Unds'IS'Unds'TEST{}() : SortAccountParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AccountParamsTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(15,39,15,100)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'AccountParamsTest'UndsUnds'failed{}() : SortAccountParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AccountParamsTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(17,39,17,100)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'AccountParamsTest'Unds'stdstore{}() : SortAccountParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AccountParamsTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(21,39,21,102)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'AdditionalToken'Unds'count{}() : SortAdditionalTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AdditionalToken_count"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3199,37,3199,92)"), left{}(), format{}("%ccount%r"), injective{}()] + symbol Lblfield'Unds'AddrTest'Unds'IS'Unds'SCRIPT{}() : SortAddrTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AddrTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(178,30,178,86)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'AddrTest'Unds'IS'Unds'TEST{}() : SortAddrTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AddrTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(174,30,174,82)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'AddrTest'UndsUnds'failed{}() : SortAddrTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AddrTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(176,30,176,82)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'AddrTest'Unds'stdstore{}() : SortAddrTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AddrTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(180,30,180,84)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'AllowChangesTest'Unds'IS'Unds'SCRIPT{}() : SortAllowChangesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AllowChangesTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(312,38,312,102)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'AllowChangesTest'Unds'IS'Unds'TEST{}() : SortAllowChangesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AllowChangesTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(308,38,308,98)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'AllowChangesTest'UndsUnds'failed{}() : SortAllowChangesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AllowChangesTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(310,38,310,98)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'AllowChangesTest'Unds'stdstore{}() : SortAllowChangesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AllowChangesTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(314,38,314,100)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'ArithmeticTest'Unds'IS'Unds'SCRIPT{}() : SortArithmeticTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ArithmeticTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(488,36,488,98)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'ArithmeticTest'Unds'IS'Unds'TEST{}() : SortArithmeticTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ArithmeticTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(484,36,484,94)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'ArithmeticTest'UndsUnds'failed{}() : SortArithmeticTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ArithmeticTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(486,36,486,94)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'ArithmeticTest'Unds'stdstore{}() : SortArithmeticTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ArithmeticTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(490,36,490,96)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'AssertTest'Unds'IS'Unds'SCRIPT{}() : SortAssertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AssertTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4011,32,4011,90)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'AssertTest'Unds'IS'Unds'TEST{}() : SortAssertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AssertTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4007,32,4007,86)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'AssertTest'UndsUnds'failed{}() : SortAssertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AssertTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4009,32,4009,86)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'AssertTest'Unds'stdstore{}() : SortAssertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AssertTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4013,32,4013,88)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'AssertTest'Unds'y{}() : SortAssertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AssertTest_y"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4015,32,4015,74)"), left{}(), format{}("%cy%r"), injective{}()] + symbol Lblfield'Unds'AssumeTest'Unds'IS'Unds'SCRIPT{}() : SortAssumeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AssumeTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(707,32,707,90)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'AssumeTest'Unds'IS'Unds'TEST{}() : SortAssumeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AssumeTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(703,32,703,86)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'AssumeTest'UndsUnds'failed{}() : SortAssumeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AssumeTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(705,32,705,86)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'AssumeTest'Unds'stdstore{}() : SortAssumeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_AssumeTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(709,32,709,88)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'BlockParamsTest'Unds'IS'Unds'SCRIPT{}() : SortBlockParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_BlockParamsTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(839,37,839,100)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'BlockParamsTest'Unds'IS'Unds'TEST{}() : SortBlockParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_BlockParamsTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(835,37,835,96)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'BlockParamsTest'UndsUnds'failed{}() : SortBlockParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_BlockParamsTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(837,37,837,96)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'BlockParamsTest'Unds'stdstore{}() : SortBlockParamsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_BlockParamsTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(841,37,841,98)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'BroadcastTest'Unds'ACCOUNT'Unds'A{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_BroadcastTest_ACCOUNT_A"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(955,35,955,96)"), left{}(), format{}("%cACCOUNT_A%r"), injective{}()] + symbol Lblfield'Unds'BroadcastTest'Unds'ACCOUNT'Unds'B{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_BroadcastTest_ACCOUNT_B"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(957,35,957,96)"), left{}(), format{}("%cACCOUNT_B%r"), injective{}()] + symbol Lblfield'Unds'BroadcastTest'Unds'IS'Unds'SCRIPT{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_BroadcastTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(951,35,951,96)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'BroadcastTest'Unds'IS'Unds'TEST{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_BroadcastTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(947,35,947,92)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'BroadcastTest'UndsUnds'failed{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_BroadcastTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(949,35,949,92)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'BroadcastTest'Unds'stdstore{}() : SortBroadcastTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_BroadcastTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(953,35,953,94)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'ContractBTest'Unds'IS'Unds'SCRIPT{}() : SortContractBTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ContractBTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1157,35,1157,96)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'ContractBTest'Unds'IS'Unds'TEST{}() : SortContractBTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ContractBTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1153,35,1153,92)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'ContractBTest'UndsUnds'failed{}() : SortContractBTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ContractBTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1155,35,1155,92)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'ContractBTest'Unds'stdstore{}() : SortContractBTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ContractBTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1159,35,1159,94)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'ContractBTest'Unds'testNumber{}() : SortContractBTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ContractBTest_testNumber"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1161,35,1161,98)"), left{}(), format{}("%ctestNumber%r"), injective{}()] + symbol Lblfield'Unds'ContractTest'Unds'IS'Unds'SCRIPT{}() : SortContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ContractTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1073,34,1073,94)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'ContractTest'Unds'IS'Unds'TEST{}() : SortContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ContractTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1069,34,1069,90)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'ContractTest'UndsUnds'failed{}() : SortContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ContractTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1071,34,1071,90)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'ContractTest'Unds'stdstore{}() : SortContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ContractTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1075,34,1075,92)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'DSTest'Unds'IS'Unds'TEST{}() : SortDSTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_DSTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6700,28,6700,78)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'DSTest'UndsUnds'failed{}() : SortDSTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_DSTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6702,28,6702,78)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'DepthReverter'Unds'reverter{}() : SortDepthReverterField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_DepthReverter_reverter"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1753,35,1753,94)"), left{}(), format{}("%creverter%r"), injective{}()] + symbol Lblfield'Unds'DynamicTypes'Unds'IS'Unds'SCRIPT{}() : SortDynamicTypesField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_DynamicTypes_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1262,34,1262,94)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'DynamicTypes'Unds'IS'Unds'TEST{}() : SortDynamicTypesField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_DynamicTypes_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1258,34,1258,90)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'DynamicTypes'UndsUnds'failed{}() : SortDynamicTypesField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_DynamicTypes__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1260,34,1260,90)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'DynamicTypes'Unds'stdstore{}() : SortDynamicTypesField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_DynamicTypes_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1264,34,1264,92)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'EmitContractTest'Unds'IS'Unds'SCRIPT{}() : SortEmitContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_EmitContractTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1363,38,1363,102)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'EmitContractTest'Unds'IS'Unds'TEST{}() : SortEmitContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_EmitContractTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1359,38,1359,98)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'EmitContractTest'UndsUnds'failed{}() : SortEmitContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_EmitContractTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1361,38,1361,98)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'EmitContractTest'Unds'stdstore{}() : SortEmitContractTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_EmitContractTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1365,38,1365,100)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'EnvTest'Unds'IS'Unds'SCRIPT{}() : SortEnvTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_EnvTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1455,29,1455,84)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'EnvTest'Unds'IS'Unds'TEST{}() : SortEnvTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_EnvTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1451,29,1451,80)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'EnvTest'UndsUnds'failed{}() : SortEnvTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_EnvTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1453,29,1453,80)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'EnvTest'Unds'stdstore{}() : SortEnvTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_EnvTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1457,29,1457,82)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'ExpectCallTest'Unds'IS'Unds'SCRIPT{}() : SortExpectCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ExpectCallTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1665,36,1665,98)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'ExpectCallTest'Unds'IS'Unds'TEST{}() : SortExpectCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ExpectCallTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1661,36,1661,94)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'ExpectCallTest'UndsUnds'failed{}() : SortExpectCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ExpectCallTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1663,36,1663,94)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'ExpectCallTest'Unds'stdstore{}() : SortExpectCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ExpectCallTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1667,36,1667,96)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'ExpectRevertTest'Unds'IS'Unds'SCRIPT{}() : SortExpectRevertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ExpectRevertTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1786,38,1786,102)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'ExpectRevertTest'Unds'IS'Unds'TEST{}() : SortExpectRevertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ExpectRevertTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1782,38,1782,98)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'ExpectRevertTest'UndsUnds'failed{}() : SortExpectRevertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ExpectRevertTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1784,38,1784,98)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'ExpectRevertTest'Unds'stdstore{}() : SortExpectRevertTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ExpectRevertTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1788,38,1788,100)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'FfiTest'Unds'IS'Unds'SCRIPT{}() : SortFfiTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_FfiTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1981,29,1981,84)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'FfiTest'Unds'IS'Unds'TEST{}() : SortFfiTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_FfiTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1977,29,1977,80)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'FfiTest'UndsUnds'failed{}() : SortFfiTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_FfiTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1979,29,1979,80)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'FfiTest'Unds'stdstore{}() : SortFfiTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_FfiTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1983,29,1983,82)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'FilesTest'Unds'IS'Unds'SCRIPT{}() : SortFilesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_FilesTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2089,31,2089,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'FilesTest'Unds'IS'Unds'TEST{}() : SortFilesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_FilesTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2085,31,2085,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'FilesTest'UndsUnds'failed{}() : SortFilesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_FilesTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2087,31,2087,84)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'FilesTest'Unds'stdstore{}() : SortFilesTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_FilesTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2091,31,2091,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'ForkTest'Unds'IS'Unds'SCRIPT{}() : SortForkTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ForkTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2181,30,2181,86)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'ForkTest'Unds'IS'Unds'TEST{}() : SortForkTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ForkTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2177,30,2177,82)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'ForkTest'UndsUnds'failed{}() : SortForkTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ForkTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2179,30,2179,82)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'ForkTest'Unds'stdstore{}() : SortForkTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ForkTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2183,30,2183,84)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'GetCodeTest'Unds'IS'Unds'SCRIPT{}() : SortGetCodeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_GetCodeTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2329,33,2329,92)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'GetCodeTest'Unds'IS'Unds'TEST{}() : SortGetCodeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_GetCodeTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2325,33,2325,88)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'GetCodeTest'UndsUnds'failed{}() : SortGetCodeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_GetCodeTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2327,33,2327,88)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'GetCodeTest'Unds'myToken{}() : SortGetCodeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_GetCodeTest_myToken"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2333,33,2333,88)"), left{}(), format{}("%cmyToken%r"), injective{}()] + symbol Lblfield'Unds'GetCodeTest'Unds'stdstore{}() : SortGetCodeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_GetCodeTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2331,33,2331,90)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'LabelTest'Unds'IS'Unds'SCRIPT{}() : SortLabelTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_LabelTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2561,31,2561,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'LabelTest'Unds'IS'Unds'TEST{}() : SortLabelTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_LabelTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2557,31,2557,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'LabelTest'UndsUnds'failed{}() : SortLabelTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_LabelTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2559,31,2559,84)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'LabelTest'Unds'stdstore{}() : SortLabelTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_LabelTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2563,31,2563,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'LoopsTest'Unds'IS'Unds'SCRIPT{}() : SortLoopsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_LoopsTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2637,31,2637,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'LoopsTest'Unds'IS'Unds'TEST{}() : SortLoopsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_LoopsTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2633,31,2633,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'LoopsTest'UndsUnds'failed{}() : SortLoopsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_LoopsTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2635,31,2635,84)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'LoopsTest'Unds'stdstore{}() : SortLoopsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_LoopsTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2639,31,2639,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'MockCallTest'Unds'IS'Unds'SCRIPT{}() : SortMockCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_MockCallTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2811,34,2811,94)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'MockCallTest'Unds'IS'Unds'TEST{}() : SortMockCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_MockCallTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2807,34,2807,90)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'MockCallTest'UndsUnds'failed{}() : SortMockCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_MockCallTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2809,34,2809,90)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'MockCallTest'Unds'stdstore{}() : SortMockCallTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_MockCallTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2813,34,2813,92)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'MyToken'Unds'balances{}() : SortMyTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_MyToken_balances"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2990,29,2990,82)"), left{}(), format{}("%cbalances%r"), injective{}()] + symbol Lblfield'Unds'MyToken'Unds'token{}() : SortMyTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_MyToken_token"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2988,29,2988,76)"), left{}(), format{}("%ctoken%r"), injective{}()] + symbol Lblfield'Unds'OwnerUpOnlyTest'Unds'IS'Unds'SCRIPT{}() : SortOwnerUpOnlyTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_OwnerUpOnlyTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3098,37,3098,100)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'OwnerUpOnlyTest'Unds'IS'Unds'TEST{}() : SortOwnerUpOnlyTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_OwnerUpOnlyTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3094,37,3094,96)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'OwnerUpOnlyTest'UndsUnds'failed{}() : SortOwnerUpOnlyTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_OwnerUpOnlyTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3096,37,3096,96)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'OwnerUpOnlyTest'Unds'stdstore{}() : SortOwnerUpOnlyTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_OwnerUpOnlyTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3100,37,3100,98)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'OwnerUpOnlyTest'Unds'upOnly{}() : SortOwnerUpOnlyTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_OwnerUpOnlyTest_upOnly"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3102,37,3102,94)"), left{}(), format{}("%cupOnly%r"), injective{}()] + symbol Lblfield'Unds'OwnerUpOnly'Unds'count{}() : SortOwnerUpOnlyField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_OwnerUpOnly_count"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3049,33,3049,84)"), left{}(), format{}("%ccount%r"), injective{}()] + symbol Lblfield'Unds'PlainPrankTest'Unds'IS'Unds'SCRIPT{}() : SortPlainPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_PlainPrankTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3248,36,3248,98)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'PlainPrankTest'Unds'IS'Unds'TEST{}() : SortPlainPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_PlainPrankTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3244,36,3244,94)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'PlainPrankTest'UndsUnds'failed{}() : SortPlainPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_PlainPrankTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3246,36,3246,94)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'PlainPrankTest'Unds'stdstore{}() : SortPlainPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_PlainPrankTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3250,36,3250,96)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'PrankTest'Unds'IS'Unds'SCRIPT{}() : SortPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_PrankTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3435,31,3435,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'PrankTest'Unds'IS'Unds'TEST{}() : SortPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_PrankTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3431,31,3431,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'PrankTest'UndsUnds'failed{}() : SortPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_PrankTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3433,31,3433,84)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'PrankTest'Unds'prankContract{}() : SortPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_PrankTest_prankContract"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3439,31,3439,96)"), left{}(), format{}("%cprankContract%r"), injective{}()] + symbol Lblfield'Unds'PrankTest'Unds'stdstore{}() : SortPrankTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_PrankTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3437,31,3437,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'Prank'Unds'count{}() : SortPrankField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Prank_count"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3376,27,3376,72)"), left{}(), format{}("%ccount%r"), injective{}()] + symbol Lblfield'Unds'RecordLogsTest'Unds'IS'Unds'SCRIPT{}() : SortRecordLogsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_RecordLogsTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3574,36,3574,98)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'RecordLogsTest'Unds'IS'Unds'TEST{}() : SortRecordLogsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_RecordLogsTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3570,36,3570,94)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'RecordLogsTest'UndsUnds'failed{}() : SortRecordLogsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_RecordLogsTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3572,36,3572,94)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'RecordLogsTest'Unds'emitter{}() : SortRecordLogsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_RecordLogsTest_emitter"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3578,36,3578,94)"), left{}(), format{}("%cemitter%r"), injective{}()] + symbol Lblfield'Unds'RecordLogsTest'Unds'stdstore{}() : SortRecordLogsTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_RecordLogsTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3576,36,3576,96)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'SafeTest'Unds'IS'Unds'SCRIPT{}() : SortSafeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SafeTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3685,30,3685,86)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'SafeTest'Unds'IS'Unds'TEST{}() : SortSafeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SafeTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3681,30,3681,82)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'SafeTest'UndsUnds'failed{}() : SortSafeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SafeTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3683,30,3683,82)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'SafeTest'Unds'safe{}() : SortSafeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SafeTest_safe"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3689,30,3689,76)"), left{}(), format{}("%csafe%r"), injective{}()] + symbol Lblfield'Unds'SafeTest'Unds'stdstore{}() : SortSafeTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SafeTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3687,30,3687,84)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'Script'Unds'IS'Unds'SCRIPT{}() : SortScriptField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Script_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3779,28,3779,82)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'SetUpTest'Unds'IS'Unds'SCRIPT{}() : SortSetUpTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SetUpTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3820,31,3820,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'SetUpTest'Unds'IS'Unds'TEST{}() : SortSetUpTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SetUpTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3816,31,3816,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'SetUpTest'UndsUnds'failed{}() : SortSetUpTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SetUpTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3818,31,3818,84)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'SetUpTest'Unds'counter{}() : SortSetUpTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SetUpTest_counter"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3824,31,3824,84)"), left{}(), format{}("%ccounter%r"), injective{}()] + symbol Lblfield'Unds'SetUpTest'Unds'stdstore{}() : SortSetUpTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SetUpTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3822,31,3822,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'SignTest'Unds'IS'Unds'SCRIPT{}() : SortSignTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SignTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3918,30,3918,86)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'SignTest'Unds'IS'Unds'TEST{}() : SortSignTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SignTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3914,30,3914,82)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'SignTest'UndsUnds'failed{}() : SortSignTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SignTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3916,30,3916,82)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'SignTest'Unds'stdstore{}() : SortSignTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SignTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3920,30,3920,84)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'SnapshotTest'Unds'IS'Unds'SCRIPT{}() : SortSnapshotTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SnapshotTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4152,34,4152,94)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'SnapshotTest'Unds'IS'Unds'TEST{}() : SortSnapshotTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SnapshotTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4148,34,4148,90)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'SnapshotTest'UndsUnds'failed{}() : SortSnapshotTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SnapshotTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4150,34,4150,90)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'SnapshotTest'Unds'stdstore{}() : SortSnapshotTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SnapshotTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4154,34,4154,92)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'SnapshotTest'Unds'store{}() : SortSnapshotTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SnapshotTest_store"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4156,34,4156,86)"), left{}(), format{}("%cstore%r"), injective{}()] + symbol Lblfield'Unds'StoreTest'Unds'IS'Unds'SCRIPT{}() : SortStoreTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_StoreTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4260,31,4260,88)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'StoreTest'Unds'IS'Unds'TEST{}() : SortStoreTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_StoreTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4256,31,4256,84)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'StoreTest'UndsUnds'failed{}() : SortStoreTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_StoreTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4258,31,4258,84)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'StoreTest'Unds'stdstore{}() : SortStoreTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_StoreTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4262,31,4262,86)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'Store'Unds'testNumber{}() : SortStoreField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Store_testNumber"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4237,27,4237,82)"), left{}(), format{}("%ctestNumber%r"), injective{}()] + symbol Lblfield'Unds'SymbolicStorageTest'Unds'IS'Unds'SCRIPT{}() : SortSymbolicStorageTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SymbolicStorageTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4408,41,4408,108)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'SymbolicStorageTest'Unds'IS'Unds'TEST{}() : SortSymbolicStorageTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SymbolicStorageTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4404,41,4404,104)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'SymbolicStorageTest'UndsUnds'failed{}() : SortSymbolicStorageTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SymbolicStorageTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4406,41,4406,104)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'SymbolicStorageTest'Unds'stdstore{}() : SortSymbolicStorageTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SymbolicStorageTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4410,41,4410,106)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'SymbolicStore'Unds'testNumber{}() : SortSymbolicStoreField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_SymbolicStore_testNumber"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4498,35,4498,98)"), left{}(), format{}("%ctestNumber%r"), injective{}()] + symbol Lblfield'Unds'TestNumber'Unds'IS'Unds'TEST{}() : SortTestNumberField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_TestNumber_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4716,32,4716,86)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'TestNumber'UndsUnds'failed{}() : SortTestNumberField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_TestNumber__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4718,32,4718,86)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'TestNumber'Unds'testNumber{}() : SortTestNumberField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_TestNumber_testNumber"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4720,32,4720,92)"), left{}(), format{}("%ctestNumber%r"), injective{}()] + symbol Lblfield'Unds'Test'Unds'IS'Unds'SCRIPT{}() : SortTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Test_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4521,26,4521,78)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'Test'Unds'IS'Unds'TEST{}() : SortTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Test_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4517,26,4517,74)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'Test'UndsUnds'failed{}() : SortTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Test__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4519,26,4519,74)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'Test'Unds'stdstore{}() : SortTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Test_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4523,26,4523,76)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'ToStringTest'Unds'IS'Unds'SCRIPT{}() : SortToStringTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ToStringTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4784,34,4784,94)"), left{}(), format{}("%cIS_SCRIPT%r"), injective{}()] + symbol Lblfield'Unds'ToStringTest'Unds'IS'Unds'TEST{}() : SortToStringTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ToStringTest_IS_TEST"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4780,34,4780,90)"), left{}(), format{}("%cIS_TEST%r"), injective{}()] + symbol Lblfield'Unds'ToStringTest'UndsUnds'failed{}() : SortToStringTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ToStringTest__failed"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4782,34,4782,90)"), left{}(), format{}("%c_failed%r"), injective{}()] + symbol Lblfield'Unds'ToStringTest'Unds'stdstore{}() : SortToStringTestField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ToStringTest_stdstore"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4786,34,4786,92)"), left{}(), format{}("%cstdstore%r"), injective{}()] + symbol Lblfield'Unds'Token'Unds'a{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Token_a"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4908,27,4908,64)"), left{}(), format{}("%ca%r"), injective{}()] + symbol Lblfield'Unds'Token'Unds'allowances{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Token_allowances"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4900,27,4900,82)"), left{}(), format{}("%callowances%r"), injective{}()] + symbol Lblfield'Unds'Token'Unds'balances{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Token_balances"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4898,27,4898,78)"), left{}(), format{}("%cbalances%r"), injective{}()] + symbol Lblfield'Unds'Token'Unds'foos{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Token_foos"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4910,27,4910,70)"), left{}(), format{}("%cfoos%r"), injective{}()] + symbol Lblfield'Unds'Token'Unds'name{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Token_name"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4902,27,4902,70)"), left{}(), format{}("%cname%r"), injective{}()] + symbol Lblfield'Unds'Token'Unds'x{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Token_x"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4896,27,4896,64)"), left{}(), format{}("%cx%r"), injective{}()] + symbol Lblfield'Unds'Token'Unds'y{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Token_y"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4904,27,4904,64)"), left{}(), format{}("%cy%r"), injective{}()] + symbol Lblfield'Unds'Token'Unds'z{}() : SortTokenField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_Token_z"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4906,27,4906,64)"), left{}(), format{}("%cz%r"), injective{}()] + symbol Lblfield'Unds'ValueStore'Unds'value1{}() : SortValueStoreField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ValueStore_value1"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(424,32,424,84)"), left{}(), format{}("%cvalue1%r"), injective{}()] + symbol Lblfield'Unds'ValueStore'Unds'value2{}() : SortValueStoreField{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("field_ValueStore_value2"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(426,32,426,84)"), left{}(), format{}("%cvalue2%r"), injective{}()] hooked-symbol LblfillList'LParUndsCommUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("fillList"), hook{}("LIST.fill"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(803,19,803,100)"), left{}(), format{}("%cfillList%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), function{}()] hooked-symbol LblfindChar'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findChar"), hook{}("STRING.findChar"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1576,18,1576,116)"), left{}(), format{}("%cfindChar%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblfindString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String'Unds'String'Unds'Int{}(SortString{}, SortString{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("findString"), hook{}("STRING.find"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1565,18,1565,111)"), left{}(), format{}("%cfindString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol Lblfoundry'Unds'assume{}(SortBool{}) : SortKItem{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/foundry.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("foundry_assume"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,22,231,71)"), left{}(), format{}("%c#assume%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblfoundry'Unds'success{}(SortStatusCode{}, SortInt{}, SortBool{}, SortBool{}, SortBool{}, SortBool{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/foundry.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101010101"), klabel{}("foundry_success"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(141,21,141,145)"), left{}(), format{}("%cfoundry_success%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), function{}()] + symbol Lblfoundry'Unds'assume{}(SortBool{}) : SortKItem{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/foundry.md)"), symbol'Kywd'{}("foundry_assume"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(231,22,231,71)"), left{}(), format{}("%c#assume%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblfoundry'Unds'success{}(SortStatusCode{}, SortInt{}, SortBool{}, SortBool{}, SortBool{}, SortBool{}) : SortBool{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/foundry.md)"), symbol'Kywd'{}("foundry_success"), priorities{}(), right{}(), terminals{}("11010101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(141,21,141,145)"), left{}(), format{}("%cfoundry_success%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c,%r %5 %c,%r %6 %c)%r"), function{}()] symbol LblfreshInt'LParUndsRParUnds'INT'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), freshGenerator{}(), klabel{}("freshInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1253,18,1253,77)"), left{}(), format{}("%cfreshInt%r %c(%r %1 %c)%r"), private{}(), function{}()] symbol LblgetBloomFilterBit'LParUndsCommUndsRParUnds'EVM'Unds'Int'Unds'ByteArray'Unds'Int{}(SortBytes{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("getBloomFilterBit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(714,20,714,64)"), left{}(), format{}("%cgetBloomFilterBit%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblgetExitCode{}(SortGeneratedTopCell{}) : SortInt{} [priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cgetExitCode%r %c(%r %1 %c)%r"), function{}()] symbol LblgetGeneratedCounterCell{}(SortGeneratedTopCell{}) : SortGeneratedCounterCell{} [priorities{}(), right{}(), terminals{}("1101"), left{}(), format{}("%cgetGeneratedCounterCell%r %c(%r %1 %c)%r"), function{}()] - symbol LblinfGas{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/infinite-gas.md)"), total{}(), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("infGas"), terminals{}("1101"), klabel{}("infGas"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,20,36,105)"), no-evaluators{}(), left{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), function{}()] + symbol LblinfGas{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/infinite-gas.md)"), total{}(), symbol'Kywd'{}("infGas"), priorities{}(), right{}(), smtlib{}("infGas"), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(36,20,36,105)"), no-evaluators{}(), left{}(), format{}("%c#gas%r %c(%r %1 %c)%r"), function{}()] symbol LblinitAccessedAccountsCell{}() : SortAccessedAccountsCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitAccessedAccountsCell%r"), function{}()] symbol LblinitAccessedStorageCell{}() : SortAccessedStorageCell{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitAccessedStorageCell%r"), function{}()] symbol LblinitAccountCell{}() : SortAccountCellMap{} [noThread{}(), priorities{}(), right{}(), terminals{}("1"), left{}(), initializer{}(), format{}("%cinitAccountCell%r"), function{}()] @@ -2347,7 +2347,7 @@ module TEST hooked-symbol LbllengthBytes'LParUndsRParUnds'BYTES-HOOKED'Unds'Int'Unds'Bytes{}(SortBytes{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), smtlib{}("lengthBytes"), terminals{}("1101"), klabel{}("lengthBytes"), hook{}("BYTES.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1970,18,1970,95)"), left{}(), format{}("%clengthBytes%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LbllengthString'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("lengthString"), hook{}("STRING.length"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1530,18,1530,80)"), left{}(), format{}("%clengthString%r %c(%r %1 %c)%r"), function{}()] symbol LbllistAsByteArrays'LParUndsRParUnds'EVM'Unds'List'Unds'List{}(SortList{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("listAsByteArrays"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(695,21,695,54)"), left{}(), format{}("%clistAsByteArrays%r %c(%r %1 %c)%r"), function{}()] - symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("littleEndianBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1843,25,1843,65)"), left{}(), format{}("%cLE%r"), injective{}()] + symbol LbllittleEndianBytes{}() : SortEndianness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("littleEndianBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1843,25,1843,65)"), left{}(), format{}("%cLE%r"), injective{}()] symbol Lbllog256Int'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("log256Int"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(79,20,79,48)"), left{}(), format{}("%clog256Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbllog2Int'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("log2Int"), hook{}("INT.log2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1090,18,1090,75)"), left{}(), format{}("%clog2Int%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblmakeList'LParUndsCommUndsRParUnds'LIST'Unds'List'Unds'Int'Unds'KItem{}(SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), klabel{}("makeList"), hook{}("LIST.make"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(784,19,784,82)"), left{}(), format{}("%cmakeList%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] @@ -2389,611 +2389,611 @@ module TEST symbol LblmaxUInt88'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(120,20,120,45)"), left{}(), format{}("%cmaxUInt88%r"), alias'Kywd'{}(), injective{}()] symbol LblmaxUInt8'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(100,20,100,45)"), left{}(), format{}("%cmaxUInt8%r"), alias'Kywd'{}(), injective{}()] symbol LblmaxUInt96'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(122,20,122,45)"), left{}(), format{}("%cmaxUInt96%r"), alias'Kywd'{}(), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest{}(SortAccountParamsTestContract{}, SortAccountParamsTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_AccountParamsTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,26,35,136)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'IS'Unds'SCRIPT{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,40,37,114)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'IS'Unds'TEST{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,40,39,110)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'failed{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,40,41,108)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'testDealConcrete{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_testDealConcrete"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,40,43,128)"), left{}(), format{}("%ctestDealConcrete%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'testDealSymbolic{}(SortInt{}) : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_AccountParamsTest_testDealSymbolic"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,40,45,132)"), left{}(), format{}("%ctestDealSymbolic%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'testEtchConcrete{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_testEtchConcrete"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,40,47,128)"), left{}(), format{}("%ctestEtchConcrete%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'testEtchSymbolic{}(SortBytes{}) : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_AccountParamsTest_testEtchSymbolic"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,40,49,138)"), left{}(), format{}("%ctestEtchSymbolic%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'testFail'Unds'GetNonce'Unds'false{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_testFail_GetNonce_false"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,40,51,142)"), left{}(), format{}("%ctestFail_GetNonce_false%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'testFail'Unds'GetNonce'Unds'true{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_testFail_GetNonce_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,40,53,140)"), left{}(), format{}("%ctestFail_GetNonce_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'testNonceSymbolic{}(SortInt{}) : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_AccountParamsTest_testNonceSymbolic"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,40,55,134)"), left{}(), format{}("%ctestNonceSymbolic%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'test'Unds'GetNonce'Unds'false{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_test_GetNonce_false"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,40,57,134)"), left{}(), format{}("%ctest_GetNonce_false%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'test'Unds'GetNonce'Unds'true{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_test_GetNonce_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,40,59,132)"), left{}(), format{}("%ctest_GetNonce_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'test'Unds'Nonce'Unds'ExistentAddress{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_test_Nonce_ExistentAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,40,61,148)"), left{}(), format{}("%ctest_Nonce_ExistentAddress%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'test'Unds'Nonce'Unds'NonExistentAddress{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_test_Nonce_NonExistentAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,40,63,154)"), left{}(), format{}("%ctest_Nonce_NonExistentAddress%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AccountParamsTest'Unds'vm{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AccountParamsTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,40,65,100)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AdditionalToken{}(SortAdditionalTokenContract{}, SortAdditionalTokenMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_AdditionalToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3204,26,3204,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'AdditionalToken'Unds'count{}() : SortAdditionalTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AdditionalToken_count"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3206,38,3206,102)"), left{}(), format{}("%ccount%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AdditionalToken'Unds'incrementCount{}() : SortAdditionalTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AdditionalToken_incrementCount"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3208,38,3208,120)"), left{}(), format{}("%cincrementCount%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AdditionalToken'Unds'owner{}() : SortAdditionalTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AdditionalToken_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3210,38,3210,102)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest{}(SortAddrTestContract{}, SortAddrTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_AddrTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,26,194,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'AddrTest'Unds'IS'Unds'SCRIPT{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddrTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(196,31,196,96)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'IS'Unds'TEST{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddrTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(198,31,198,92)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'failed{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddrTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(200,31,200,90)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'kevm{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddrTest_kevm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(202,31,202,86)"), left{}(), format{}("%ckevm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'testFail'Unds'addr'Unds'false{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddrTest_testFail_addr_false"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(204,31,204,116)"), left{}(), format{}("%ctestFail_addr_false%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'testFail'Unds'addr'Unds'true{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddrTest_testFail_addr_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(206,31,206,114)"), left{}(), format{}("%ctestFail_addr_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'test'Unds'addr'Unds'false{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddrTest_test_addr_false"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(208,31,208,108)"), left{}(), format{}("%ctest_addr_false%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'test'Unds'addr'Unds'symbolic{}(SortInt{}) : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_AddrTest_test_addr_symbolic"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(210,31,210,118)"), left{}(), format{}("%ctest_addr_symbolic%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'test'Unds'addr'Unds'true{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddrTest_test_addr_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(212,31,212,106)"), left{}(), format{}("%ctest_addr_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'test'Unds'notBuiltinAddress'Unds'concrete{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddrTest_test_notBuiltinAddress_concrete"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(214,31,214,140)"), left{}(), format{}("%ctest_notBuiltinAddress_concrete%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'test'Unds'notBuiltinAddress'Unds'symbolic{}(SortInt{}) : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_AddrTest_test_notBuiltinAddress_symbolic"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(216,31,216,144)"), left{}(), format{}("%ctest_notBuiltinAddress_symbolic%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AddrTest'Unds'vm{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AddrTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(218,31,218,82)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AllowChangesTest{}(SortAllowChangesTestContract{}, SortAllowChangesTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_AllowChangesTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(328,26,328,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'AllowChangesTest'Unds'IS'Unds'SCRIPT{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AllowChangesTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(330,39,330,112)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AllowChangesTest'Unds'IS'Unds'TEST{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AllowChangesTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(332,39,332,108)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AllowChangesTest'Unds'failed{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AllowChangesTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(334,39,334,106)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AllowChangesTest'Unds'kevm{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AllowChangesTest_kevm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(336,39,336,102)"), left{}(), format{}("%ckevm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AllowChangesTest'Unds'test{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AllowChangesTest_test"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(338,39,338,102)"), left{}(), format{}("%ctest%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AllowChangesTest'Unds'testAllow{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AllowChangesTest_testAllow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(340,39,340,112)"), left{}(), format{}("%ctestAllow%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AllowChangesTest'Unds'testAllow'Unds'fail{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AllowChangesTest_testAllow_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(342,39,342,122)"), left{}(), format{}("%ctestAllow_fail%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AllowChangesTest'Unds'testFailAllowCallsToAddress{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AllowChangesTest_testFailAllowCallsToAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,39,344,148)"), left{}(), format{}("%ctestFailAllowCallsToAddress%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AllowChangesTest'Unds'testFailAllowChangesToStorage{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AllowChangesTest_testFailAllowChangesToStorage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(346,39,346,152)"), left{}(), format{}("%ctestFailAllowChangesToStorage%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AllowChangesTest'Unds'vm{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AllowChangesTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(348,39,348,98)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest{}(SortArithmeticTestContract{}, SortArithmeticTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ArithmeticTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(504,26,504,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'IS'Unds'SCRIPT{}() : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ArithmeticTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(506,37,506,108)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'IS'Unds'TEST{}() : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ArithmeticTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(508,37,508,104)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'failed{}() : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ArithmeticTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(510,37,510,102)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'setUp{}() : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ArithmeticTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(512,37,512,100)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'decreasing'Unds'div{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_decreasing_div"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(514,37,514,140)"), left{}(), format{}("%ctest_decreasing_div%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'max1{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_max1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(516,37,516,120)"), left{}(), format{}("%ctest_max1%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'max1'Unds'broken{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_max1_broken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(518,37,518,134)"), left{}(), format{}("%ctest_max1_broken%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'max2{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_max2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(520,37,520,120)"), left{}(), format{}("%ctest_max2%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wdiv'Unds'rounding{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_wdiv_rounding"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,37,522,138)"), left{}(), format{}("%ctest_wdiv_rounding%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'increasing{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_wmul_increasing"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,37,524,142)"), left{}(), format{}("%ctest_wmul_increasing%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'increasing'Unds'gt'Unds'one{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_wmul_increasing_gt_one"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(526,37,526,156)"), left{}(), format{}("%ctest_wmul_increasing_gt_one%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'increasing'Unds'overflow{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_wmul_increasing_overflow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(528,37,528,160)"), left{}(), format{}("%ctest_wmul_increasing_overflow%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'increasing'Unds'positive{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_wmul_increasing_positive"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(530,37,530,160)"), left{}(), format{}("%ctest_wmul_increasing_positive%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'rounding{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_wmul_rounding"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(532,37,532,138)"), left{}(), format{}("%ctest_wmul_rounding%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'wdiv'Unds'inverse{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_wmul_wdiv_inverse"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(534,37,534,146)"), left{}(), format{}("%ctest_wmul_wdiv_inverse%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'wdiv'Unds'inverse'Unds'underflow{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_wmul_wdiv_inverse_underflow"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(536,37,536,166)"), left{}(), format{}("%ctest_wmul_wdiv_inverse_underflow%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'weakly'Unds'increasing'Unds'positive{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_ArithmeticTest_test_wmul_weakly_increasing_positive"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(538,37,538,174)"), left{}(), format{}("%ctest_wmul_weakly_increasing_positive%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ArithmeticTest'Unds'vm{}() : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ArithmeticTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(540,37,540,94)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest{}(SortAssertTestContract{}, SortAssertTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_AssertTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4032,26,4032,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'AssertTest'Unds'IS'Unds'SCRIPT{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssertTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4034,33,4034,100)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'IS'Unds'TEST{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssertTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4036,33,4036,96)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'failed{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssertTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4038,33,4038,94)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'setUp{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssertTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4040,33,4040,92)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'testFail'Unds'assert'Unds'false{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssertTest_testFail_assert_false"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4042,33,4042,124)"), left{}(), format{}("%ctestFail_assert_false%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'testFail'Unds'assert'Unds'true{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssertTest_testFail_assert_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4044,33,4044,122)"), left{}(), format{}("%ctestFail_assert_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'testFail'Unds'expect'Unds'revert{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssertTest_testFail_expect_revert"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4046,33,4046,126)"), left{}(), format{}("%ctestFail_expect_revert%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'test'Unds'assert'Unds'false{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssertTest_test_assert_false"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4048,33,4048,116)"), left{}(), format{}("%ctest_assert_false%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'test'Unds'assert'Unds'true{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssertTest_test_assert_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4050,33,4050,114)"), left{}(), format{}("%ctest_assert_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'test'Unds'assert'Unds'true'Unds'branch{}(SortInt{}) : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_AssertTest_test_assert_true_branch"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4052,33,4052,132)"), left{}(), format{}("%ctest_assert_true_branch%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'test'Unds'revert'Unds'branch{}(SortInt{}, SortInt{}) : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_AssertTest_test_revert_branch"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4054,33,4054,130)"), left{}(), format{}("%ctest_revert_branch%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssertTest'Unds'vm{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssertTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4056,33,4056,86)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssumeTest{}(SortAssumeTestContract{}, SortAssumeTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_AssumeTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(723,26,723,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'AssumeTest'Unds'IS'Unds'SCRIPT{}() : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssumeTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,33,725,100)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssumeTest'Unds'IS'Unds'TEST{}() : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssumeTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(727,33,727,96)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssumeTest'Unds'failed{}() : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssumeTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,33,729,94)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssumeTest'Unds'testFail'Unds'assume'Unds'false{}(SortInt{}, SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_AssumeTest_testFail_assume_false"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(731,33,731,136)"), left{}(), format{}("%ctestFail_assume_false%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssumeTest'Unds'testFail'Unds'assume'Unds'true{}(SortInt{}, SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_AssumeTest_testFail_assume_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(733,33,733,134)"), left{}(), format{}("%ctestFail_assume_true%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssumeTest'Unds'test'Unds'assume'Unds'false{}(SortInt{}, SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_AssumeTest_test_assume_false"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(735,33,735,128)"), left{}(), format{}("%ctest_assume_false%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssumeTest'Unds'test'Unds'assume'Unds'staticCall{}(SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_AssumeTest_test_assume_staticCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,33,737,130)"), left{}(), format{}("%ctest_assume_staticCall%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssumeTest'Unds'test'Unds'assume'Unds'true{}(SortInt{}, SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_AssumeTest_test_assume_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,33,739,126)"), left{}(), format{}("%ctest_assume_true%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssumeTest'Unds'test'Unds'multi'Unds'assume{}(SortInt{}, SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_AssumeTest_test_multi_assume"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(741,33,741,128)"), left{}(), format{}("%ctest_multi_assume%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'AssumeTest'Unds'vm{}() : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_AssumeTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(743,33,743,86)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BlockParamsTest{}(SortBlockParamsTestContract{}, SortBlockParamsTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_BlockParamsTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(855,26,855,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'BlockParamsTest'Unds'IS'Unds'SCRIPT{}() : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BlockParamsTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(857,38,857,110)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BlockParamsTest'Unds'IS'Unds'TEST{}() : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BlockParamsTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(859,38,859,106)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BlockParamsTest'Unds'failed{}() : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BlockParamsTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(861,38,861,104)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BlockParamsTest'Unds'testChainId{}(SortInt{}) : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BlockParamsTest_testChainId"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(863,38,863,118)"), left{}(), format{}("%ctestChainId%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'BlockParamsTest'Unds'testCoinBase{}() : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BlockParamsTest_testCoinBase"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(865,38,865,116)"), left{}(), format{}("%ctestCoinBase%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BlockParamsTest'Unds'testFee{}(SortInt{}) : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BlockParamsTest_testFee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(867,38,867,110)"), left{}(), format{}("%ctestFee%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'BlockParamsTest'Unds'testRoll{}(SortInt{}) : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BlockParamsTest_testRoll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(869,38,869,112)"), left{}(), format{}("%ctestRoll%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'BlockParamsTest'Unds'testWarp{}(SortInt{}) : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BlockParamsTest_testWarp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(871,38,871,112)"), left{}(), format{}("%ctestWarp%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'BlockParamsTest'Unds'vm{}() : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BlockParamsTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,38,873,96)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BroadcastTest{}(SortBroadcastTestContract{}, SortBroadcastTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_BroadcastTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(977,26,977,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'BroadcastTest'Unds'IS'Unds'SCRIPT{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BroadcastTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(979,36,979,106)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BroadcastTest'Unds'IS'Unds'TEST{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BroadcastTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(981,36,981,102)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BroadcastTest'Unds'deployNoArgs{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BroadcastTest_deployNoArgs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(983,36,983,112)"), left{}(), format{}("%cdeployNoArgs%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BroadcastTest'Unds'deployOther{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BroadcastTest_deployOther"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(985,36,985,110)"), left{}(), format{}("%cdeployOther%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BroadcastTest'Unds'failed{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BroadcastTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(987,36,987,100)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BroadcastTest'Unds'setUp{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BroadcastTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(989,36,989,98)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BroadcastTest'Unds'testDeploy{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BroadcastTest_testDeploy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(991,36,991,108)"), left{}(), format{}("%ctestDeploy%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BroadcastTest'Unds'vm{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BroadcastTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(993,36,993,92)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BytesTypeTest{}(SortBytesTypeTestContract{}, SortBytesTypeTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_BytesTypeTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4961,26,4961,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'BytesTypeTest'Unds'setUp{}() : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_BytesTypeTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4963,36,4963,98)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'BytesTypeTest'Unds'testFail'Unds'bytes32{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BytesTypeTest_testFail_bytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4965,36,4965,124)"), left{}(), format{}("%ctestFail_bytes32%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'BytesTypeTest'Unds'testFail'Unds'bytes4{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BytesTypeTest_testFail_bytes4"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4967,36,4967,122)"), left{}(), format{}("%ctestFail_bytes4%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'BytesTypeTest'Unds'test'Unds'bytes32{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BytesTypeTest_test_bytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4969,36,4969,116)"), left{}(), format{}("%ctest_bytes32%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'BytesTypeTest'Unds'test'Unds'bytes32'Unds'fail{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BytesTypeTest_test_bytes32_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4971,36,4971,126)"), left{}(), format{}("%ctest_bytes32_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'BytesTypeTest'Unds'test'Unds'bytes4{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BytesTypeTest_test_bytes4"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4973,36,4973,114)"), left{}(), format{}("%ctest_bytes4%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'BytesTypeTest'Unds'test'Unds'bytes4'Unds'fail{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_BytesTypeTest_test_bytes4_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4975,36,4975,124)"), left{}(), format{}("%ctest_bytes4_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractBTest{}(SortContractBTestContract{}, SortContractBTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ContractBTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1178,26,1178,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ContractBTest'Unds'IS'Unds'SCRIPT{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractBTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1180,36,1180,106)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractBTest'Unds'IS'Unds'TEST{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractBTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1182,36,1182,102)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractBTest'Unds'failed{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractBTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1184,36,1184,100)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractBTest'Unds'setUp{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractBTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,36,1186,98)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractBTest'Unds'testCannotSubtract43{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractBTest_testCannotSubtract43"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1188,36,1188,128)"), left{}(), format{}("%ctestCannotSubtract43%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractBTest'Unds'testFailSubtract43{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractBTest_testFailSubtract43"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1190,36,1190,124)"), left{}(), format{}("%ctestFailSubtract43%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractBTest'Unds'testNumberIs42{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractBTest_testNumberIs42"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1192,36,1192,116)"), left{}(), format{}("%ctestNumberIs42%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractBTest'Unds'vm{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractBTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1194,36,1194,92)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractTest{}(SortContractTestContract{}, SortContractTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ContractTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1089,26,1089,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ContractTest'Unds'IS'Unds'SCRIPT{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1091,35,1091,104)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractTest'Unds'IS'Unds'TEST{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1093,35,1093,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractTest'Unds'failed{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1095,35,1095,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractTest'Unds'setUp{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1097,35,1097,96)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractTest'Unds'testExample{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractTest_testExample"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1099,35,1099,108)"), left{}(), format{}("%ctestExample%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ContractTest'Unds'vm{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ContractTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,35,1101,90)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DSTest{}(SortDSTestContract{}, SortDSTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_DSTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6710,26,6710,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'DSTest'Unds'IS'Unds'TEST{}() : SortDSTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DSTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6712,29,6712,88)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DSTest'Unds'failed{}() : SortDSTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DSTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6714,29,6714,86)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DepthReverter{}(SortDepthReverterContract{}, SortDepthReverterMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_DepthReverter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1758,26,1758,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'DepthReverter'Unds'revertAtNextDepth{}() : SortDepthReverterMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DepthReverter_revertAtNextDepth"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1760,36,1760,122)"), left{}(), format{}("%crevertAtNextDepth%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Dummy{}(SortDummyContract{}, SortDummyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Dummy"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1637,26,1637,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'Dummy'Unds'numberA{}() : SortDummyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Dummy_numberA"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1639,28,1639,86)"), left{}(), format{}("%cnumberA%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DynamicTypes{}(SortDynamicTypesContract{}, SortDynamicTypesMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_DynamicTypes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1278,26,1278,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'DynamicTypes'Unds'IS'Unds'SCRIPT{}() : SortDynamicTypesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DynamicTypes_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1280,35,1280,104)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DynamicTypes'Unds'IS'Unds'TEST{}() : SortDynamicTypesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DynamicTypes_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1282,35,1282,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DynamicTypes'Unds'failed{}() : SortDynamicTypesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DynamicTypes_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1284,35,1284,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'DynamicTypes'Unds'test'Unds'dynamic'Unds'byte'Unds'read{}(SortBytes{}, SortInt{}) : SortDynamicTypesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_DynamicTypes_test_dynamic_byte_read"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1286,35,1286,148)"), left{}(), format{}("%ctest_dynamic_byte_read%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'DynamicTypes'Unds'vm{}() : SortDynamicTypesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_DynamicTypes_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1288,35,1288,90)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EmitContractTest{}(SortEmitContractTestContract{}, SortEmitContractTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_EmitContractTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1379,26,1379,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'EmitContractTest'Unds'IS'Unds'SCRIPT{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EmitContractTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1381,39,1381,112)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EmitContractTest'Unds'IS'Unds'TEST{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EmitContractTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,39,1383,108)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EmitContractTest'Unds'failed{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EmitContractTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1385,39,1385,106)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EmitContractTest'Unds'testExpectEmit{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EmitContractTest_testExpectEmit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1387,39,1387,122)"), left{}(), format{}("%ctestExpectEmit%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EmitContractTest'Unds'testExpectEmitCheckEmitter{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EmitContractTest_testExpectEmitCheckEmitter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1389,39,1389,146)"), left{}(), format{}("%ctestExpectEmitCheckEmitter%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EmitContractTest'Unds'testExpectEmitDoNotCheckData{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EmitContractTest_testExpectEmitDoNotCheckData"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1391,39,1391,150)"), left{}(), format{}("%ctestExpectEmitDoNotCheckData%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EmitContractTest'Unds'vm{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EmitContractTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1393,39,1393,98)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest{}(SortEnvTestContract{}, SortEnvTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_EnvTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1471,26,1471,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'EnvTest'Unds'IS'Unds'SCRIPT{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1473,30,1473,94)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'IS'Unds'TEST{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1475,30,1475,90)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'failed{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1477,30,1477,88)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'setUp{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1479,30,1479,86)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvAddress{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1481,30,1481,104)"), left{}(), format{}("%ctestEnvAddress%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvAddresseArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvAddresseArray"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1483,30,1483,116)"), left{}(), format{}("%ctestEnvAddresseArray%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvBool{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvBool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1485,30,1485,98)"), left{}(), format{}("%ctestEnvBool%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvBoolArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvBoolArray"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1487,30,1487,108)"), left{}(), format{}("%ctestEnvBoolArray%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvBytes{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1489,30,1489,100)"), left{}(), format{}("%ctestEnvBytes%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvBytes32{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvBytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1491,30,1491,104)"), left{}(), format{}("%ctestEnvBytes32%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvBytes32Array{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvBytes32Array"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1493,30,1493,114)"), left{}(), format{}("%ctestEnvBytes32Array%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvBytesArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvBytesArray"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1495,30,1495,110)"), left{}(), format{}("%ctestEnvBytesArray%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvInt{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1497,30,1497,96)"), left{}(), format{}("%ctestEnvInt%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvIntArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvIntArray"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1499,30,1499,106)"), left{}(), format{}("%ctestEnvIntArray%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvString{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1501,30,1501,102)"), left{}(), format{}("%ctestEnvString%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvStringArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvStringArray"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1503,30,1503,112)"), left{}(), format{}("%ctestEnvStringArray%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvUInt{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvUInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1505,30,1505,98)"), left{}(), format{}("%ctestEnvUInt%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'testEnvUIntArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_testEnvUIntArray"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1507,30,1507,108)"), left{}(), format{}("%ctestEnvUIntArray%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'EnvTest'Unds'vm{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_EnvTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1509,30,1509,80)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectCallTest{}(SortExpectCallTestContract{}, SortExpectCallTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ExpectCallTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1681,26,1681,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ExpectCallTest'Unds'IS'Unds'SCRIPT{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectCallTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1683,37,1683,108)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectCallTest'Unds'IS'Unds'TEST{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectCallTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1685,37,1685,104)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectCallTest'Unds'failed{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectCallTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1687,37,1687,102)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectCallTest'Unds'kevm{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectCallTest_kevm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1689,37,1689,98)"), left{}(), format{}("%ckevm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectCallTest'Unds'testExpectRegularCall{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectCallTest_testExpectRegularCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1691,37,1691,132)"), left{}(), format{}("%ctestExpectRegularCall%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectCallTest'Unds'testExpectStaticCall{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectCallTest_testExpectStaticCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1693,37,1693,130)"), left{}(), format{}("%ctestExpectStaticCall%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectCallTest'Unds'vm{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectCallTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1695,37,1695,94)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectEmit{}(SortExpectEmitContract{}, SortExpectEmitMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ExpectEmit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1335,26,1335,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ExpectEmit'Unds't{}() : SortExpectEmitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectEmit_t"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1337,33,1337,84)"), left{}(), format{}("%ct%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest{}(SortExpectRevertTestContract{}, SortExpectRevertTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ExpectRevertTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1802,26,1802,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'IS'Unds'SCRIPT{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1804,39,1804,112)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'IS'Unds'TEST{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1806,39,1806,108)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'failed{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1808,39,1808,106)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'testFail'Unds'ExpectRevert'Unds'failAndSuccess{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_testFail_ExpectRevert_failAndSuccess"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,39,1810,166)"), left{}(), format{}("%ctestFail_ExpectRevert_failAndSuccess%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'testFail'Unds'expectRevert'Unds'bytes4{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_testFail_expectRevert_bytes4"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,39,1812,150)"), left{}(), format{}("%ctestFail_expectRevert_bytes4%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'testFail'Unds'expectRevert'Unds'empty{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_testFail_expectRevert_empty"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1814,39,1814,148)"), left{}(), format{}("%ctestFail_expectRevert_empty%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'testFail'Unds'expectRevert'Unds'false{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_testFail_expectRevert_false"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1816,39,1816,148)"), left{}(), format{}("%ctestFail_expectRevert_false%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'testFail'Unds'expectRevert'Unds'multipleReverts{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_testFail_expectRevert_multipleReverts"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1818,39,1818,168)"), left{}(), format{}("%ctestFail_expectRevert_multipleReverts%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'ExpectRevert'Unds'increasedDepth{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_test_ExpectRevert_increasedDepth"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1820,39,1820,158)"), left{}(), format{}("%ctest_ExpectRevert_increasedDepth%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'expectRevert'Unds'bytes4{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_test_expectRevert_bytes4"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1822,39,1822,142)"), left{}(), format{}("%ctest_expectRevert_bytes4%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'expectRevert'Unds'encodedSymbolic{}(SortInt{}) : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ExpectRevertTest_test_expectRevert_encodedSymbolic"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1824,39,1824,164)"), left{}(), format{}("%ctest_expectRevert_encodedSymbolic%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'expectRevert'Unds'internalCall{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_test_expectRevert_internalCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1826,39,1826,154)"), left{}(), format{}("%ctest_expectRevert_internalCall%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'expectRevert'Unds'message{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_test_expectRevert_message"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1828,39,1828,144)"), left{}(), format{}("%ctest_expectRevert_message%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'expectRevert'Unds'true{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_test_expectRevert_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1830,39,1830,138)"), left{}(), format{}("%ctest_expectRevert_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ExpectRevertTest'Unds'vm{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ExpectRevertTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1832,39,1832,98)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FfiTest{}(SortFfiTestContract{}, SortFfiTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_FfiTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1997,26,1997,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'FfiTest'Unds'IS'Unds'SCRIPT{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FfiTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1999,30,1999,94)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FfiTest'Unds'IS'Unds'TEST{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FfiTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2001,30,2001,90)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FfiTest'Unds'failed{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FfiTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2003,30,2003,88)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FfiTest'Unds'setUp{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FfiTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2005,30,2005,86)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FfiTest'Unds'testFFIFOO{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FfiTest_testFFIFOO"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2007,30,2007,96)"), left{}(), format{}("%ctestFFIFOO%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FfiTest'Unds'testFFIScript{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FfiTest_testFFIScript"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2009,30,2009,102)"), left{}(), format{}("%ctestFFIScript%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FfiTest'Unds'testFFIScript2{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FfiTest_testFFIScript2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2011,30,2011,104)"), left{}(), format{}("%ctestFFIScript2%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FfiTest'Unds'testffi{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FfiTest_testffi"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,30,2013,90)"), left{}(), format{}("%ctestffi%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FfiTest'Unds'vm{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FfiTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2015,30,2015,80)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FilesTest{}(SortFilesTestContract{}, SortFilesTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_FilesTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2105,26,2105,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'FilesTest'Unds'IS'Unds'SCRIPT{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FilesTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2107,32,2107,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FilesTest'Unds'IS'Unds'TEST{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FilesTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2109,32,2109,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FilesTest'Unds'failed{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FilesTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2111,32,2111,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FilesTest'Unds'testFailRemoveFile{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FilesTest_testFailRemoveFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2113,32,2113,116)"), left{}(), format{}("%ctestFailRemoveFile%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FilesTest'Unds'testReadWriteFile{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FilesTest_testReadWriteFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2115,32,2115,114)"), left{}(), format{}("%ctestReadWriteFile%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FilesTest'Unds'testReadWriteLine{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FilesTest_testReadWriteLine"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2117,32,2117,114)"), left{}(), format{}("%ctestReadWriteLine%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'FilesTest'Unds'vm{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_FilesTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2119,32,2119,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest{}(SortForkTestContract{}, SortForkTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ForkTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2197,26,2197,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ForkTest'Unds'IS'Unds'SCRIPT{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2199,31,2199,96)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'IS'Unds'TEST{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2201,31,2201,92)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'failed{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2203,31,2203,90)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'testActiveFork{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_testActiveFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2205,31,2205,106)"), left{}(), format{}("%ctestActiveFork%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'testAllRPCUrl{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_testAllRPCUrl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2207,31,2207,104)"), left{}(), format{}("%ctestAllRPCUrl%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'testCreateFork{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_testCreateFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2209,31,2209,106)"), left{}(), format{}("%ctestCreateFork%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'testCreateForkBlock{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_testCreateForkBlock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2211,31,2211,116)"), left{}(), format{}("%ctestCreateForkBlock%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'testCreateSelectFork{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_testCreateSelectFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2213,31,2213,118)"), left{}(), format{}("%ctestCreateSelectFork%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'testCreateSelectForkBlock{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_testCreateSelectForkBlock"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2215,31,2215,128)"), left{}(), format{}("%ctestCreateSelectForkBlock%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'testRPCUrl{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_testRPCUrl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2217,31,2217,98)"), left{}(), format{}("%ctestRPCUrl%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'testRPCUrlRevert{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_testRPCUrlRevert"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2219,31,2219,110)"), left{}(), format{}("%ctestRPCUrlRevert%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'testRollFork{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_testRollFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2221,31,2221,102)"), left{}(), format{}("%ctestRollFork%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'testRollForkId{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_testRollForkId"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2223,31,2223,106)"), left{}(), format{}("%ctestRollForkId%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ForkTest'Unds'vm{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ForkTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2225,31,2225,82)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GetCodeTest{}(SortGetCodeTestContract{}, SortGetCodeTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_GetCodeTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2350,26,2350,118)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'GetCodeTest'Unds'IS'Unds'SCRIPT{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GetCodeTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2352,34,2352,102)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GetCodeTest'Unds'IS'Unds'TEST{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GetCodeTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2354,34,2354,98)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GetCodeTest'Unds'failed{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GetCodeTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2356,34,2356,96)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GetCodeTest'Unds'setUp{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GetCodeTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2358,34,2358,94)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GetCodeTest'Unds'testGetCode{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GetCodeTest_testGetCode"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2360,34,2360,106)"), left{}(), format{}("%ctestGetCode%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'GetCodeTest'Unds'vm{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_GetCodeTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2362,34,2362,88)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'KEVMCheats{}(SortKEVMCheatsContract{}, SortKEVMCheatsMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_KEVMCheats"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2412,26,2412,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'KEVMCheatsBase{}(SortKEVMCheatsBaseContract{}, SortKEVMCheatsBaseMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_KEVMCheatsBase"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2434,26,2434,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'KEVMCheatsBase'Unds'allowCallsToAddress{}(SortInt{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_KEVMCheatsBase_allowCallsToAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2436,37,2436,132)"), left{}(), format{}("%callowCallsToAddress%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'KEVMCheatsBase'Unds'allowChangesToStorage{}(SortInt{}, SortInt{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_KEVMCheatsBase_allowChangesToStorage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2438,37,2438,144)"), left{}(), format{}("%callowChangesToStorage%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectCreate{}(SortInt{}, SortInt{}, SortBytes{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_KEVMCheatsBase_expectCreate"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2440,37,2440,140)"), left{}(), format{}("%cexpectCreate%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectCreate2{}(SortInt{}, SortInt{}, SortBytes{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_KEVMCheatsBase_expectCreate2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2442,37,2442,142)"), left{}(), format{}("%cexpectCreate2%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectDelegateCall{}(SortInt{}, SortBytes{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_KEVMCheatsBase_expectDelegateCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2444,37,2444,144)"), left{}(), format{}("%cexpectDelegateCall%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectNoCall{}() : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_KEVMCheatsBase_expectNoCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2446,37,2446,114)"), left{}(), format{}("%cexpectNoCall%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectRegularCall{}(SortInt{}, SortInt{}, SortBytes{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_KEVMCheatsBase_expectRegularCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2448,37,2448,150)"), left{}(), format{}("%cexpectRegularCall%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectStaticCall{}(SortInt{}, SortBytes{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_KEVMCheatsBase_expectStaticCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2452,37,2452,140)"), left{}(), format{}("%cexpectStaticCall%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'KEVMCheatsBase'Unds'symbolicStorage{}(SortInt{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_KEVMCheatsBase_symbolicStorage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2454,37,2454,124)"), left{}(), format{}("%csymbolicStorage%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'KEVMCheats'Unds'kevm{}() : SortKEVMCheatsMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_KEVMCheats_kevm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2414,33,2414,90)"), left{}(), format{}("%ckevm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LabelTest{}(SortLabelTestContract{}, SortLabelTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_LabelTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2577,26,2577,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'LabelTest'Unds'IS'Unds'SCRIPT{}() : SortLabelTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LabelTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2579,32,2579,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LabelTest'Unds'IS'Unds'TEST{}() : SortLabelTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LabelTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2581,32,2581,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LabelTest'Unds'failed{}() : SortLabelTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LabelTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2583,32,2583,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LabelTest'Unds'testLabel{}() : SortLabelTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LabelTest_testLabel"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2585,32,2585,98)"), left{}(), format{}("%ctestLabel%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LabelTest'Unds'vm{}() : SortLabelTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LabelTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2587,32,2587,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest{}(SortLoopsTestContract{}, SortLoopsTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_LoopsTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2653,26,2653,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'IS'Unds'SCRIPT{}() : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LoopsTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2655,32,2655,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'IS'Unds'TEST{}() : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LoopsTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2657,32,2657,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'failed{}() : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LoopsTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2659,32,2659,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'setUp{}() : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LoopsTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2661,32,2661,90)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testIsNotPrime{}(SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LoopsTest_testIsNotPrime"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2663,32,2663,112)"), left{}(), format{}("%ctestIsNotPrime%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testIsPrime{}(SortInt{}, SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_LoopsTest_testIsPrime"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2665,32,2665,114)"), left{}(), format{}("%ctestIsPrime%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testIsPrimeBroken{}(SortInt{}, SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_LoopsTest_testIsPrimeBroken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2667,32,2667,126)"), left{}(), format{}("%ctestIsPrimeBroken%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testIsPrimeOpt{}(SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LoopsTest_testIsPrimeOpt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2669,32,2669,112)"), left{}(), format{}("%ctestIsPrimeOpt%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testMax{}(SortK{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LoopsTest_testMax"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2671,32,2671,96)"), left{}(), format{}("%ctestMax%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testMaxBroken{}(SortK{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LoopsTest_testMaxBroken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2673,32,2673,108)"), left{}(), format{}("%ctestMaxBroken%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testNthPrime{}(SortInt{}, SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_LoopsTest_testNthPrime"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2675,32,2675,116)"), left{}(), format{}("%ctestNthPrime%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testSort{}(SortK{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LoopsTest_testSort"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2677,32,2677,98)"), left{}(), format{}("%ctestSort%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testSortBroken{}(SortK{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LoopsTest_testSortBroken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2679,32,2679,110)"), left{}(), format{}("%ctestSortBroken%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testSqrt{}(SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LoopsTest_testSqrt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2681,32,2681,100)"), left{}(), format{}("%ctestSqrt%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testSumToN{}(SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LoopsTest_testSumToN"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2683,32,2683,104)"), left{}(), format{}("%ctestSumToN%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'testSumToNBroken{}(SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_LoopsTest_testSumToNBroken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2685,32,2685,116)"), left{}(), format{}("%ctestSumToNBroken%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'LoopsTest'Unds'vm{}() : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_LoopsTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2687,32,2687,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MockCallTest{}(SortMockCallTestContract{}, SortMockCallTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_MockCallTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2827,26,2827,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'MockCallTest'Unds'IS'Unds'SCRIPT{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MockCallTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2829,35,2829,104)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MockCallTest'Unds'IS'Unds'TEST{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MockCallTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2831,35,2831,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MockCallTest'Unds'failed{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MockCallTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2833,35,2833,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MockCallTest'Unds'setUp{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MockCallTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2835,35,2835,96)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MockCallTest'Unds'testMockCall{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MockCallTest_testMockCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2837,35,2837,110)"), left{}(), format{}("%ctestMockCall%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MockCallTest'Unds'testMockCallValue{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MockCallTest_testMockCallValue"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2839,35,2839,120)"), left{}(), format{}("%ctestMockCallValue%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MockCallTest'Unds'testMockCalls{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MockCallTest_testMockCalls"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2841,35,2841,112)"), left{}(), format{}("%ctestMockCalls%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MockCallTest'Unds'vm{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MockCallTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2843,35,2843,90)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyIERC20{}(SortMyIERC20Contract{}, SortMyIERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_MyIERC20"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2905,26,2905,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'MyIERC20'Unds'approve{}(SortInt{}, SortInt{}) : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_MyIERC20_approve"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2907,31,2907,104)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyIERC20'Unds'balanceOf{}(SortInt{}) : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_MyIERC20_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2909,31,2909,100)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyIERC20'Unds'decimals{}() : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MyIERC20_decimals"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2911,31,2911,94)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyIERC20'Unds'symbol{}() : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MyIERC20_symbol"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2913,31,2913,90)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyIERC20'Unds'totalSupply{}() : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MyIERC20_totalSupply"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2915,31,2915,100)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyIERC20'Unds'transfer{}(SortInt{}, SortInt{}) : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_MyIERC20_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2917,31,2917,106)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyIERC20'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_MyIERC20_transferFrom"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2919,31,2919,122)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyToken{}(SortMyTokenContract{}, SortMyTokenMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_MyToken"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2998,26,2998,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'MyToken'Unds'balanceOf{}(SortInt{}) : SortMyTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_MyToken_balanceOf"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3000,30,3000,98)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyToken'Unds'balances{}(SortInt{}) : SortMyTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_MyToken_balances"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3002,30,3002,96)"), left{}(), format{}("%cbalances%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyToken'Unds'pay{}(SortInt{}) : SortMyTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_MyToken_pay"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3004,30,3004,86)"), left{}(), format{}("%cpay%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'MyToken'Unds'token{}() : SortMyTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_MyToken_token"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3006,30,3006,86)"), left{}(), format{}("%ctoken%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnly{}(SortOwnerUpOnlyContract{}, SortOwnerUpOnlyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_OwnerUpOnly"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3054,26,3054,118)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'OwnerUpOnlyTest{}(SortOwnerUpOnlyTestContract{}, SortOwnerUpOnlyTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_OwnerUpOnlyTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3119,26,3119,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'IS'Unds'SCRIPT{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnlyTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3121,38,3121,110)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'IS'Unds'TEST{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnlyTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3123,38,3123,106)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'failed{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnlyTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3125,38,3125,104)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'setUp{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnlyTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3127,38,3127,102)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'testFailIncrementAsNotOwner{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnlyTest_testFailIncrementAsNotOwner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3129,38,3129,146)"), left{}(), format{}("%ctestFailIncrementAsNotOwner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'testIncrementAsNotOwner{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnlyTest_testIncrementAsNotOwner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3131,38,3131,138)"), left{}(), format{}("%ctestIncrementAsNotOwner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'testIncrementAsOwner{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnlyTest_testIncrementAsOwner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3133,38,3133,132)"), left{}(), format{}("%ctestIncrementAsOwner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'vm{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnlyTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3135,38,3135,96)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnly'Unds'count{}() : SortOwnerUpOnlyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnly_count"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3056,34,3056,94)"), left{}(), format{}("%ccount%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnly'Unds'increment{}() : SortOwnerUpOnlyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnly_increment"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3058,34,3058,102)"), left{}(), format{}("%cincrement%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'OwnerUpOnly'Unds'owner{}() : SortOwnerUpOnlyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_OwnerUpOnly_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3060,34,3060,94)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest{}(SortPlainPrankTestContract{}, SortPlainPrankTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_PlainPrankTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3264,26,3264,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'IS'Unds'SCRIPT{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3266,37,3266,108)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'IS'Unds'TEST{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3268,37,3268,104)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'failed{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3270,37,3270,102)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'internalCounter{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_internalCounter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3272,37,3272,120)"), left{}(), format{}("%cinternalCounter%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'testFail'Unds'startPrank'Unds'existingAlready{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_testFail_startPrank_existingAlready"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3274,37,3274,160)"), left{}(), format{}("%ctestFail_startPrank_existingAlready%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'testFail'Unds'startPrank'Unds'internalCall{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_testFail_startPrank_internalCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3276,37,3276,154)"), left{}(), format{}("%ctestFail_startPrank_internalCall%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'test'Unds'prank'Unds'zeroAddress'Unds'true{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_test_prank_zeroAddress_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3278,37,3278,144)"), left{}(), format{}("%ctest_prank_zeroAddress_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'test'Unds'startPrankWithOrigin'Unds'true{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_test_startPrankWithOrigin_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3280,37,3280,150)"), left{}(), format{}("%ctest_startPrankWithOrigin_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'test'Unds'startPrank'Unds'true{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_test_startPrank_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3282,37,3282,130)"), left{}(), format{}("%ctest_startPrank_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'test'Unds'startPrank'Unds'zeroAddress'Unds'true{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_test_startPrank_zeroAddress_true"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3284,37,3284,154)"), left{}(), format{}("%ctest_startPrank_zeroAddress_true%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'test'Unds'stopPrank'Unds'notExistent{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_test_stopPrank_notExistent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3286,37,3286,142)"), left{}(), format{}("%ctest_stopPrank_notExistent%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PlainPrankTest'Unds'vm{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PlainPrankTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3288,37,3288,94)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Prank{}(SortPrankContract{}, SortPrankMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Prank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3381,26,3381,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'PrankTest{}(SortPrankTestContract{}, SortPrankTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_PrankTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3456,26,3456,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'PrankTest'Unds'IS'Unds'SCRIPT{}() : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PrankTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3458,32,3458,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PrankTest'Unds'IS'Unds'TEST{}() : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PrankTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3460,32,3460,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PrankTest'Unds'failed{}() : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PrankTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3462,32,3462,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PrankTest'Unds'setUp{}() : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PrankTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3464,32,3464,90)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'PrankTest'Unds'testAddAsOwner{}(SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_PrankTest_testAddAsOwner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3466,32,3466,112)"), left{}(), format{}("%ctestAddAsOwner%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'PrankTest'Unds'testAddStartPrank{}(SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_PrankTest_testAddStartPrank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3468,32,3468,118)"), left{}(), format{}("%ctestAddStartPrank%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'PrankTest'Unds'testFailAddPrank{}(SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_PrankTest_testFailAddPrank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3470,32,3470,116)"), left{}(), format{}("%ctestFailAddPrank%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'PrankTest'Unds'testSubtractAsTxOrigin{}(SortInt{}, SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_PrankTest_testSubtractAsTxOrigin"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3472,32,3472,136)"), left{}(), format{}("%ctestSubtractAsTxOrigin%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'PrankTest'Unds'testSubtractFail{}(SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_PrankTest_testSubtractFail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3474,32,3474,116)"), left{}(), format{}("%ctestSubtractFail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'PrankTest'Unds'testSubtractStartPrank{}(SortInt{}, SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_PrankTest_testSubtractStartPrank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3476,32,3476,136)"), left{}(), format{}("%ctestSubtractStartPrank%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'PrankTest'Unds'vm{}() : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_PrankTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3478,32,3478,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Prank'Unds'add{}(SortInt{}) : SortPrankMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Prank_add"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3383,28,3383,82)"), left{}(), format{}("%cadd%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Prank'Unds'count{}() : SortPrankMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Prank_count"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3385,28,3385,82)"), left{}(), format{}("%ccount%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Prank'Unds'owner{}() : SortPrankMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Prank_owner"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3387,28,3387,82)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Prank'Unds'subtract{}(SortInt{}) : SortPrankMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Prank_subtract"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3389,28,3389,92)"), left{}(), format{}("%csubtract%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'RecordLogsTest{}(SortRecordLogsTestContract{}, SortRecordLogsTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_RecordLogsTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3595,26,3595,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'RecordLogsTest'Unds'IS'Unds'SCRIPT{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_RecordLogsTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3597,37,3597,108)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'RecordLogsTest'Unds'IS'Unds'TEST{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_RecordLogsTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3599,37,3599,104)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'RecordLogsTest'Unds'failed{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_RecordLogsTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3601,37,3601,102)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'RecordLogsTest'Unds'setUp{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_RecordLogsTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3603,37,3603,100)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'RecordLogsTest'Unds'testRecordLogs{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_RecordLogsTest_testRecordLogs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3605,37,3605,118)"), left{}(), format{}("%ctestRecordLogs%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'RecordLogsTest'Unds'vm{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_RecordLogsTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3607,37,3607,94)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Reverter{}(SortReverterContract{}, SortReverterMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Reverter"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1937,26,1937,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'Reverter'Unds'noRevert{}() : SortReverterMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Reverter_noRevert"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1939,31,1939,94)"), left{}(), format{}("%cnoRevert%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Reverter'Unds'revertWithReason{}(SortString{}) : SortReverterMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Reverter_revertWithReason"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1941,31,1941,117)"), left{}(), format{}("%crevertWithReason%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Reverter'Unds'revertWithoutReason{}() : SortReverterMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Reverter_revertWithoutReason"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1943,31,1943,116)"), left{}(), format{}("%crevertWithoutReason%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Safe{}(SortSafeContract{}, SortSafeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Safe"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3657,26,3657,97)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SafeTest{}(SortSafeTestContract{}, SortSafeTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_SafeTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3706,26,3706,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SafeTest'Unds'IS'Unds'SCRIPT{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SafeTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3708,31,3708,96)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SafeTest'Unds'IS'Unds'TEST{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SafeTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3710,31,3710,92)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SafeTest'Unds'failed{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SafeTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3712,31,3712,90)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SafeTest'Unds'setUp{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SafeTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3714,31,3714,88)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SafeTest'Unds'testWithdraw{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SafeTest_testWithdraw"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3716,31,3716,102)"), left{}(), format{}("%ctestWithdraw%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SafeTest'Unds'testWithdrawFuzz{}(SortInt{}) : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_SafeTest_testWithdrawFuzz"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3718,31,3718,114)"), left{}(), format{}("%ctestWithdrawFuzz%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SafeTest'Unds'vm{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SafeTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3720,31,3720,82)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Safe'Unds'withdraw{}() : SortSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Safe_withdraw"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3659,27,3659,86)"), left{}(), format{}("%cwithdraw%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Script{}(SortScriptContract{}, SortScriptMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Script"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3784,26,3784,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'Script'Unds'IS'Unds'SCRIPT{}() : SortScriptMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Script_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3786,29,3786,92)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Script'Unds'vm{}() : SortScriptMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Script_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3788,29,3788,78)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SetUpTest{}(SortSetUpTestContract{}, SortSetUpTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_SetUpTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3841,26,3841,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SetUpTest'Unds'IS'Unds'SCRIPT{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SetUpTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3843,32,3843,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SetUpTest'Unds'IS'Unds'TEST{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SetUpTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3845,32,3845,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SetUpTest'Unds'failed{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SetUpTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3847,32,3847,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SetUpTest'Unds'setUp{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SetUpTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3849,32,3849,90)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SetUpTest'Unds'testSetUpCalled{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SetUpTest_testSetUpCalled"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3851,32,3851,110)"), left{}(), format{}("%ctestSetUpCalled%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SetUpTest'Unds'testSetUpCalledSymbolic{}(SortInt{}) : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_SetUpTest_testSetUpCalledSymbolic"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3853,32,3853,130)"), left{}(), format{}("%ctestSetUpCalledSymbolic%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SetUpTest'Unds'vm{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SetUpTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3855,32,3855,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SignTest{}(SortSignTestContract{}, SortSignTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_SignTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3934,26,3934,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SignTest'Unds'IS'Unds'SCRIPT{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SignTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3936,31,3936,96)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SignTest'Unds'IS'Unds'TEST{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SignTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3938,31,3938,92)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SignTest'Unds'failed{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SignTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3940,31,3940,90)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SignTest'Unds'setUp{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SignTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3942,31,3942,88)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SignTest'Unds'testSign{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SignTest_testSign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3944,31,3944,94)"), left{}(), format{}("%ctestSign%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SignTest'Unds'testSign'Unds'symbolic{}(SortInt{}) : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_SignTest_testSign_symbolic"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3946,31,3946,116)"), left{}(), format{}("%ctestSign_symbolic%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SignTest'Unds'vm{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SignTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3948,31,3948,82)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SnapshotTest{}(SortSnapshotTestContract{}, SortSnapshotTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_SnapshotTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4173,26,4173,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SnapshotTest'Unds'IS'Unds'SCRIPT{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SnapshotTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4175,35,4175,104)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SnapshotTest'Unds'IS'Unds'TEST{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SnapshotTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4177,35,4177,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SnapshotTest'Unds'failed{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SnapshotTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4179,35,4179,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SnapshotTest'Unds'setUp{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SnapshotTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4181,35,4181,96)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SnapshotTest'Unds'testSnapshot{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SnapshotTest_testSnapshot"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4183,35,4183,110)"), left{}(), format{}("%ctestSnapshot%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SnapshotTest'Unds'vm{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SnapshotTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4185,35,4185,90)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest{}(SortStoreTestContract{}, SortStoreTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_StoreTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4276,26,4276,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'StoreTest'Unds'IS'Unds'SCRIPT{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4278,32,4278,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'IS'Unds'TEST{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4280,32,4280,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'failed{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4282,32,4282,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'testAccesses{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_testAccesses"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4284,32,4284,104)"), left{}(), format{}("%ctestAccesses%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'testGasLoadColdVM{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_testGasLoadColdVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4286,32,4286,114)"), left{}(), format{}("%ctestGasLoadColdVM%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'testGasLoadWarmUp{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_testGasLoadWarmUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4288,32,4288,114)"), left{}(), format{}("%ctestGasLoadWarmUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'testGasLoadWarmVM{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_testGasLoadWarmVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4290,32,4290,114)"), left{}(), format{}("%ctestGasLoadWarmVM%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'testGasStoreColdVM{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_testGasStoreColdVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4292,32,4292,116)"), left{}(), format{}("%ctestGasStoreColdVM%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'testGasStoreWarmUp{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_testGasStoreWarmUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4294,32,4294,116)"), left{}(), format{}("%ctestGasStoreWarmUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'testGasStoreWarmVM{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_testGasStoreWarmVM"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4296,32,4296,116)"), left{}(), format{}("%ctestGasStoreWarmVM%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'testLoadNonExistent{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_testLoadNonExistent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4298,32,4298,118)"), left{}(), format{}("%ctestLoadNonExistent%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'testStoreLoad{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_testStoreLoad"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4300,32,4300,106)"), left{}(), format{}("%ctestStoreLoad%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'testStoreLoadNonExistent{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_testStoreLoadNonExistent"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4302,32,4302,128)"), left{}(), format{}("%ctestStoreLoadNonExistent%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'StoreTest'Unds'vm{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_StoreTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4304,32,4304,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SymbolicStorageTest{}(SortSymbolicStorageTestContract{}, SortSymbolicStorageTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_SymbolicStorageTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4424,26,4424,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'SymbolicStorageTest'Unds'IS'Unds'SCRIPT{}() : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SymbolicStorageTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4426,42,4426,118)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SymbolicStorageTest'Unds'IS'Unds'TEST{}() : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SymbolicStorageTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4428,42,4428,114)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SymbolicStorageTest'Unds'failed{}() : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SymbolicStorageTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4430,42,4430,112)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SymbolicStorageTest'Unds'kevm{}() : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SymbolicStorageTest_kevm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4432,42,4432,108)"), left{}(), format{}("%ckevm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'SymbolicStorageTest'Unds'testFail'Unds'SymbolicStorage{}(SortInt{}) : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_SymbolicStorageTest_testFail_SymbolicStorage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4434,42,4434,152)"), left{}(), format{}("%ctestFail_SymbolicStorage%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SymbolicStorageTest'Unds'testFail'Unds'SymbolicStorage1{}(SortInt{}) : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_SymbolicStorageTest_testFail_SymbolicStorage1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4436,42,4436,154)"), left{}(), format{}("%ctestFail_SymbolicStorage1%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'SymbolicStorageTest'Unds'vm{}() : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_SymbolicStorageTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4438,42,4438,104)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Test{}(SortTestContract{}, SortTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Test"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4537,26,4537,97)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'TestNumber{}(SortTestNumberContract{}, SortTestNumberMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_TestNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4731,26,4731,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'TestNumber'Unds'IS'Unds'TEST{}() : SortTestNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_TestNumber_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4733,33,4733,96)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'TestNumber'Unds'failed{}() : SortTestNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_TestNumber_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4735,33,4735,94)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'TestNumber'Unds't{}(SortInt{}) : SortTestNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_TestNumber_t"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4737,33,4737,88)"), left{}(), format{}("%ct%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'TestNumber'Unds'testNumber{}() : SortTestNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_TestNumber_testNumber"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4739,33,4739,102)"), left{}(), format{}("%ctestNumber%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Test'Unds'IS'Unds'SCRIPT{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Test_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4539,27,4539,88)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Test'Unds'IS'Unds'TEST{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Test_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4541,27,4541,84)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Test'Unds'failed{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Test_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4543,27,4543,82)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Test'Unds'vm{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Test_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4545,27,4545,74)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ToStringTest{}(SortToStringTestContract{}, SortToStringTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ToStringTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4800,26,4800,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ToStringTest'Unds'IS'Unds'SCRIPT{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ToStringTest_IS_SCRIPT"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4802,35,4802,104)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ToStringTest'Unds'IS'Unds'TEST{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ToStringTest_IS_TEST"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4804,35,4804,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ToStringTest'Unds'failed{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ToStringTest_failed"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4806,35,4806,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ToStringTest'Unds'testAddressToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ToStringTest_testAddressToString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4808,35,4808,124)"), left{}(), format{}("%ctestAddressToString%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ToStringTest'Unds'testBoolToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ToStringTest_testBoolToString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4810,35,4810,118)"), left{}(), format{}("%ctestBoolToString%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ToStringTest'Unds'testBytes32ToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ToStringTest_testBytes32ToString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4812,35,4812,124)"), left{}(), format{}("%ctestBytes32ToString%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ToStringTest'Unds'testBytesToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ToStringTest_testBytesToString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4814,35,4814,120)"), left{}(), format{}("%ctestBytesToString%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ToStringTest'Unds'testIntToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ToStringTest_testIntToString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4816,35,4816,116)"), left{}(), format{}("%ctestIntToString%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ToStringTest'Unds'testUint256ToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ToStringTest_testUint256ToString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4818,35,4818,124)"), left{}(), format{}("%ctestUint256ToString%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ToStringTest'Unds'vm{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ToStringTest_vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4820,35,4820,90)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Token{}(SortTokenContract{}, SortTokenMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Token"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4936,26,4936,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'Token'Unds'transfer{}(SortInt{}, SortInt{}) : SortTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Token_transfer"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4938,28,4938,100)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest{}(SortUintTypeTestContract{}, SortUintTypeTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_UintTypeTest"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5037,26,5037,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'setUp{}() : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_UintTypeTest_setUp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5039,35,5039,96)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint104{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint104"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5041,35,5041,122)"), left{}(), format{}("%ctestFail_uint104%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint112{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint112"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5043,35,5043,122)"), left{}(), format{}("%ctestFail_uint112%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint120{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint120"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5045,35,5045,122)"), left{}(), format{}("%ctestFail_uint120%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint128{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint128"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5047,35,5047,122)"), left{}(), format{}("%ctestFail_uint128%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint136{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint136"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5049,35,5049,122)"), left{}(), format{}("%ctestFail_uint136%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint144{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint144"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5051,35,5051,122)"), left{}(), format{}("%ctestFail_uint144%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint152{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint152"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5053,35,5053,122)"), left{}(), format{}("%ctestFail_uint152%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint16{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint16"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5055,35,5055,120)"), left{}(), format{}("%ctestFail_uint16%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint160{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint160"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5057,35,5057,122)"), left{}(), format{}("%ctestFail_uint160%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint168{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint168"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5059,35,5059,122)"), left{}(), format{}("%ctestFail_uint168%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint176{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint176"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5061,35,5061,122)"), left{}(), format{}("%ctestFail_uint176%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint184{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint184"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5063,35,5063,122)"), left{}(), format{}("%ctestFail_uint184%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint192{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint192"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5065,35,5065,122)"), left{}(), format{}("%ctestFail_uint192%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint200{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint200"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5067,35,5067,122)"), left{}(), format{}("%ctestFail_uint200%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint208{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint208"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5069,35,5069,122)"), left{}(), format{}("%ctestFail_uint208%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint216{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint216"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5071,35,5071,122)"), left{}(), format{}("%ctestFail_uint216%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint224{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint224"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5073,35,5073,122)"), left{}(), format{}("%ctestFail_uint224%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint232{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint232"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5075,35,5075,122)"), left{}(), format{}("%ctestFail_uint232%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint24{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint24"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5077,35,5077,120)"), left{}(), format{}("%ctestFail_uint24%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint240{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint240"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5079,35,5079,122)"), left{}(), format{}("%ctestFail_uint240%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint248{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint248"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5081,35,5081,122)"), left{}(), format{}("%ctestFail_uint248%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint256{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint256"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5083,35,5083,122)"), left{}(), format{}("%ctestFail_uint256%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint32{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5085,35,5085,120)"), left{}(), format{}("%ctestFail_uint32%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint40{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint40"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5087,35,5087,120)"), left{}(), format{}("%ctestFail_uint40%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint48{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint48"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5089,35,5089,120)"), left{}(), format{}("%ctestFail_uint48%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint56{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint56"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5091,35,5091,120)"), left{}(), format{}("%ctestFail_uint56%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint64{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5093,35,5093,120)"), left{}(), format{}("%ctestFail_uint64%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint72{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint72"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5095,35,5095,120)"), left{}(), format{}("%ctestFail_uint72%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint8{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint8"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5097,35,5097,118)"), left{}(), format{}("%ctestFail_uint8%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint80{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint80"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5099,35,5099,120)"), left{}(), format{}("%ctestFail_uint80%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint88{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint88"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5101,35,5101,120)"), left{}(), format{}("%ctestFail_uint88%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint96{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_testFail_uint96"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5103,35,5103,120)"), left{}(), format{}("%ctestFail_uint96%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint104{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint104"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5105,35,5105,114)"), left{}(), format{}("%ctest_uint104%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint104'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint104_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5107,35,5107,124)"), left{}(), format{}("%ctest_uint104_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint112{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint112"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5109,35,5109,114)"), left{}(), format{}("%ctest_uint112%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint112'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint112_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5111,35,5111,124)"), left{}(), format{}("%ctest_uint112_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint120{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint120"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5113,35,5113,114)"), left{}(), format{}("%ctest_uint120%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint120'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint120_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5115,35,5115,124)"), left{}(), format{}("%ctest_uint120_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint128{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint128"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5117,35,5117,114)"), left{}(), format{}("%ctest_uint128%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint128'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint128_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5119,35,5119,124)"), left{}(), format{}("%ctest_uint128_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint136{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint136"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5121,35,5121,114)"), left{}(), format{}("%ctest_uint136%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint136'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint136_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5123,35,5123,124)"), left{}(), format{}("%ctest_uint136_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint144{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint144"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5125,35,5125,114)"), left{}(), format{}("%ctest_uint144%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint144'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint144_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5127,35,5127,124)"), left{}(), format{}("%ctest_uint144_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint152{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint152"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5129,35,5129,114)"), left{}(), format{}("%ctest_uint152%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint152'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint152_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5131,35,5131,124)"), left{}(), format{}("%ctest_uint152_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint16{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint16"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5133,35,5133,112)"), left{}(), format{}("%ctest_uint16%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint160{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint160"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5135,35,5135,114)"), left{}(), format{}("%ctest_uint160%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint160'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint160_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5137,35,5137,124)"), left{}(), format{}("%ctest_uint160_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint168{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint168"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5139,35,5139,114)"), left{}(), format{}("%ctest_uint168%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint168'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint168_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5141,35,5141,124)"), left{}(), format{}("%ctest_uint168_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint16'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint16_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5143,35,5143,122)"), left{}(), format{}("%ctest_uint16_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint176{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint176"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5145,35,5145,114)"), left{}(), format{}("%ctest_uint176%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint176'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint176_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5147,35,5147,124)"), left{}(), format{}("%ctest_uint176_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint184{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint184"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5149,35,5149,114)"), left{}(), format{}("%ctest_uint184%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint184'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint184_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5151,35,5151,124)"), left{}(), format{}("%ctest_uint184_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint192{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint192"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5153,35,5153,114)"), left{}(), format{}("%ctest_uint192%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint192'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint192_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5155,35,5155,124)"), left{}(), format{}("%ctest_uint192_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint200{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint200"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5157,35,5157,114)"), left{}(), format{}("%ctest_uint200%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint200'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint200_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5159,35,5159,124)"), left{}(), format{}("%ctest_uint200_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint208{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint208"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5161,35,5161,114)"), left{}(), format{}("%ctest_uint208%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint208'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint208_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5163,35,5163,124)"), left{}(), format{}("%ctest_uint208_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint216{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint216"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5165,35,5165,114)"), left{}(), format{}("%ctest_uint216%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint216'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint216_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5167,35,5167,124)"), left{}(), format{}("%ctest_uint216_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint224{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint224"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5169,35,5169,114)"), left{}(), format{}("%ctest_uint224%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint224'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint224_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5171,35,5171,124)"), left{}(), format{}("%ctest_uint224_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint232{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint232"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5173,35,5173,114)"), left{}(), format{}("%ctest_uint232%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint232'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint232_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5175,35,5175,124)"), left{}(), format{}("%ctest_uint232_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint24{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint24"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5177,35,5177,112)"), left{}(), format{}("%ctest_uint24%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint240{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint240"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5179,35,5179,114)"), left{}(), format{}("%ctest_uint240%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint240'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint240_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5181,35,5181,124)"), left{}(), format{}("%ctest_uint240_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint248{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint248"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5183,35,5183,114)"), left{}(), format{}("%ctest_uint248%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint248'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint248_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5185,35,5185,124)"), left{}(), format{}("%ctest_uint248_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint24'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint24_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5187,35,5187,122)"), left{}(), format{}("%ctest_uint24_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint256{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint256"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5189,35,5189,114)"), left{}(), format{}("%ctest_uint256%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint256'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint256_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5191,35,5191,124)"), left{}(), format{}("%ctest_uint256_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint32{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5193,35,5193,112)"), left{}(), format{}("%ctest_uint32%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint32'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint32_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5195,35,5195,122)"), left{}(), format{}("%ctest_uint32_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint40{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint40"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5197,35,5197,112)"), left{}(), format{}("%ctest_uint40%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint40'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint40_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5199,35,5199,122)"), left{}(), format{}("%ctest_uint40_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint48{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint48"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5201,35,5201,112)"), left{}(), format{}("%ctest_uint48%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint48'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint48_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5203,35,5203,122)"), left{}(), format{}("%ctest_uint48_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint56{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint56"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5205,35,5205,112)"), left{}(), format{}("%ctest_uint56%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint56'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint56_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5207,35,5207,122)"), left{}(), format{}("%ctest_uint56_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint64{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint64"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5209,35,5209,112)"), left{}(), format{}("%ctest_uint64%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint64'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint64_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5211,35,5211,122)"), left{}(), format{}("%ctest_uint64_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint72{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint72"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5213,35,5213,112)"), left{}(), format{}("%ctest_uint72%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint72'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint72_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5215,35,5215,122)"), left{}(), format{}("%ctest_uint72_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint8{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint8"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5217,35,5217,110)"), left{}(), format{}("%ctest_uint8%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint80{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint80"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5219,35,5219,112)"), left{}(), format{}("%ctest_uint80%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint80'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint80_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5221,35,5221,122)"), left{}(), format{}("%ctest_uint80_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint88{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint88"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5223,35,5223,112)"), left{}(), format{}("%ctest_uint88%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint88'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint88_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5225,35,5225,122)"), left{}(), format{}("%ctest_uint88_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint8'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint8_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5227,35,5227,120)"), left{}(), format{}("%ctest_uint8_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint96{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint96"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5229,35,5229,112)"), left{}(), format{}("%ctest_uint96%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint96'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_UintTypeTest_test_uint96_fail"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5231,35,5231,122)"), left{}(), format{}("%ctest_uint96_fail%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ValueStore{}(SortValueStoreContract{}, SortValueStoreMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_ValueStore"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(434,26,434,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'ValueStore'Unds'changeValue1{}(SortInt{}) : SortValueStoreMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ValueStore_changeValue1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(436,33,436,110)"), left{}(), format{}("%cchangeValue1%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ValueStore'Unds'changeValue2{}(SortInt{}) : SortValueStoreMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_ValueStore_changeValue2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(438,33,438,110)"), left{}(), format{}("%cchangeValue2%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'ValueStore'Unds'value1{}() : SortValueStoreMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ValueStore_value1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,33,440,94)"), left{}(), format{}("%cvalue1%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'ValueStore'Unds'value2{}() : SortValueStoreMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_ValueStore_value2"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,33,442,94)"), left{}(), format{}("%cvalue2%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm{}(SortVmContract{}, SortVmMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_Vm"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5923,26,5923,91)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'Vm'Unds'accesses{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_accesses"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5925,25,5925,86)"), left{}(), format{}("%caccesses%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'activeFork{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_activeFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5927,25,5927,86)"), left{}(), format{}("%cactiveFork%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'addr{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_addr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5929,25,5929,78)"), left{}(), format{}("%caddr%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'assume{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_assume"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5931,25,5931,82)"), left{}(), format{}("%cassume%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'broadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_broadcast"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5933,25,5933,84)"), left{}(), format{}("%cbroadcast%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'chainId{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_chainId"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5937,25,5937,84)"), left{}(), format{}("%cchainId%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'clearMockedCalls{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_clearMockedCalls"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5939,25,5939,98)"), left{}(), format{}("%cclearMockedCalls%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'closeFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_closeFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5941,25,5941,91)"), left{}(), format{}("%ccloseFile%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'coinbase{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_coinbase"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5943,25,5943,86)"), left{}(), format{}("%ccoinbase%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'createFork{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_createFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5945,25,5945,93)"), left{}(), format{}("%ccreateFork%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'createSelectFork{}(SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_createSelectFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5949,25,5949,113)"), left{}(), format{}("%ccreateSelectFork%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'deal{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_deal"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5953,25,5953,86)"), left{}(), format{}("%cdeal%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'deriveKey{}(SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_deriveKey"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5955,25,5955,99)"), left{}(), format{}("%cderiveKey%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envAddress{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_envAddress"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5959,25,5959,93)"), left{}(), format{}("%cenvAddress%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envBool{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_envBool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5963,25,5963,87)"), left{}(), format{}("%cenvBool%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envBytes{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_envBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5967,25,5967,89)"), left{}(), format{}("%cenvBytes%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envBytes32{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_envBytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5971,25,5971,104)"), left{}(), format{}("%cenvBytes32%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envInt{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_envInt"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5975,25,5975,96)"), left{}(), format{}("%cenvInt%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envString{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_envString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5979,25,5979,102)"), left{}(), format{}("%cenvString%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'envUint{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_envUint"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5983,25,5983,87)"), left{}(), format{}("%cenvUint%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'etch{}(SortInt{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_etch"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5987,25,5987,92)"), left{}(), format{}("%cetch%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'expectCall{}(SortInt{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_expectCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5989,25,5989,104)"), left{}(), format{}("%cexpectCall%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'expectEmit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_Vm_expectEmit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5993,25,5993,114)"), left{}(), format{}("%cexpectEmit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'expectRevert{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_expectRevert"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5997,25,5997,94)"), left{}(), format{}("%cexpectRevert%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'fee{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_fee"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6003,25,6003,76)"), left{}(), format{}("%cfee%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'ffi{}(SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_ffi"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6005,25,6005,74)"), left{}(), format{}("%cffi%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'getCode{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_getCode"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6007,25,6007,87)"), left{}(), format{}("%cgetCode%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'getNonce{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_getNonce"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6009,25,6009,86)"), left{}(), format{}("%cgetNonce%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'getRecordedLogs{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_getRecordedLogs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6011,25,6011,96)"), left{}(), format{}("%cgetRecordedLogs%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'label{}(SortInt{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_label"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6013,25,6013,91)"), left{}(), format{}("%clabel%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'load{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_load"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6015,25,6015,86)"), left{}(), format{}("%cload%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'mockCall{}(SortInt{}, SortInt{}, SortBytes{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101010101"), klabel{}("method_Vm_mockCall"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6017,25,6017,122)"), left{}(), format{}("%cmockCall%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'prank{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_prank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6021,25,6021,88)"), left{}(), format{}("%cprank%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'readFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_readFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6025,25,6025,89)"), left{}(), format{}("%creadFile%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'readLine{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_readLine"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6027,25,6027,89)"), left{}(), format{}("%creadLine%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'record{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_record"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6029,25,6029,78)"), left{}(), format{}("%crecord%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'recordLogs{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_recordLogs"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6031,25,6031,86)"), left{}(), format{}("%crecordLogs%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'removeFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_removeFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6033,25,6033,93)"), left{}(), format{}("%cremoveFile%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'revertTo{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_revertTo"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6035,25,6035,86)"), left{}(), format{}("%crevertTo%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'roll{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_roll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6037,25,6037,78)"), left{}(), format{}("%croll%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'rollFork{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_rollFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6039,25,6039,94)"), left{}(), format{}("%crollFork%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'rpcUrl{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_rpcUrl"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6043,25,6043,85)"), left{}(), format{}("%crpcUrl%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'rpcUrls{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_rpcUrls"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6045,25,6045,80)"), left{}(), format{}("%crpcUrls%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'selectFork{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_selectFork"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6047,25,6047,90)"), left{}(), format{}("%cselectFork%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'setEnv{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_setEnv"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6049,25,6049,96)"), left{}(), format{}("%csetEnv%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'setNonce{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_setNonce"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6051,25,6051,94)"), left{}(), format{}("%csetNonce%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'sign{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_sign"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6053,25,6053,86)"), left{}(), format{}("%csign%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'snapshot{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_snapshot"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6055,25,6055,82)"), left{}(), format{}("%csnapshot%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'startBroadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_startBroadcast"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6057,25,6057,94)"), left{}(), format{}("%cstartBroadcast%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'startPrank{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_startPrank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6061,25,6061,90)"), left{}(), format{}("%cstartPrank%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'stopBroadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_stopBroadcast"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6065,25,6065,92)"), left{}(), format{}("%cstopBroadcast%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'stopPrank{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_Vm_stopPrank"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6067,25,6067,84)"), left{}(), format{}("%cstopPrank%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'store{}(SortInt{}, SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("method_Vm_store"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6069,25,6069,96)"), left{}(), format{}("%cstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'toString{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_toString"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6071,25,6071,86)"), left{}(), format{}("%ctoString%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'warp{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("method_Vm_warp"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6083,25,6083,78)"), left{}(), format{}("%cwarp%r %c(%r %1 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'writeFile{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_writeFile"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6085,25,6085,102)"), left{}(), format{}("%cwriteFile%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'Vm'Unds'writeLine{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_Vm_writeLine"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6087,25,6087,102)"), left{}(), format{}("%cwriteLine%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError{}(SortStdErrorContract{}, SortStdErrorMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_stdError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4583,26,4583,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'stdError'Unds'arithmeticError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_arithmeticError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4585,31,4585,108)"), left{}(), format{}("%carithmeticError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'assertionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_assertionError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4587,31,4587,106)"), left{}(), format{}("%cassertionError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'divisionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_divisionError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4589,31,4589,104)"), left{}(), format{}("%cdivisionError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'encodeStorageError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_encodeStorageError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4591,31,4591,114)"), left{}(), format{}("%cencodeStorageError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'enumConversionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_enumConversionError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4593,31,4593,116)"), left{}(), format{}("%cenumConversionError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'indexOOBError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_indexOOBError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4595,31,4595,104)"), left{}(), format{}("%cindexOOBError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'lowLevelError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_lowLevelError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4597,31,4597,104)"), left{}(), format{}("%clowLevelError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'memOverflowError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_memOverflowError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4599,31,4599,110)"), left{}(), format{}("%cmemOverflowError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'popError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_popError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4601,31,4601,94)"), left{}(), format{}("%cpopError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdError'Unds'zeroVarError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("111"), klabel{}("method_stdError_zeroVarError"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4603,31,4603,102)"), left{}(), format{}("%czeroVarError%r %c(%r %c)%r"), injective{}()] - symbol Lblmethod'Unds'stdStorage{}(SortStdStorageContract{}, SortStdStorageMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("method_stdStorage"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4689,26,4689,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] - symbol Lblmethod'Unds'stdStorage'Unds'bytesToBytes32{}(SortBytes{}, SortInt{}) : SortStdStorageMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("method_stdStorage_bytesToBytes32"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4691,33,4691,128)"), left{}(), format{}("%cbytesToBytes32%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest{}(SortAccountParamsTestContract{}, SortAccountParamsTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(35,26,35,136)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'IS'Unds'SCRIPT{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(37,40,37,114)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'IS'Unds'TEST{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(39,40,39,110)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'failed{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(41,40,41,108)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'testDealConcrete{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_testDealConcrete"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(43,40,43,128)"), left{}(), format{}("%ctestDealConcrete%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'testDealSymbolic{}(SortInt{}) : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_testDealSymbolic"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,40,45,132)"), left{}(), format{}("%ctestDealSymbolic%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'testEtchConcrete{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_testEtchConcrete"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(47,40,47,128)"), left{}(), format{}("%ctestEtchConcrete%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'testEtchSymbolic{}(SortBytes{}) : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_testEtchSymbolic"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(49,40,49,138)"), left{}(), format{}("%ctestEtchSymbolic%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'testFail'Unds'GetNonce'Unds'false{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_testFail_GetNonce_false"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(51,40,51,142)"), left{}(), format{}("%ctestFail_GetNonce_false%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'testFail'Unds'GetNonce'Unds'true{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_testFail_GetNonce_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(53,40,53,140)"), left{}(), format{}("%ctestFail_GetNonce_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'testNonceSymbolic{}(SortInt{}) : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_testNonceSymbolic"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(55,40,55,134)"), left{}(), format{}("%ctestNonceSymbolic%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'test'Unds'GetNonce'Unds'false{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_test_GetNonce_false"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(57,40,57,134)"), left{}(), format{}("%ctest_GetNonce_false%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'test'Unds'GetNonce'Unds'true{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_test_GetNonce_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(59,40,59,132)"), left{}(), format{}("%ctest_GetNonce_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'test'Unds'Nonce'Unds'ExistentAddress{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_test_Nonce_ExistentAddress"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(61,40,61,148)"), left{}(), format{}("%ctest_Nonce_ExistentAddress%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'test'Unds'Nonce'Unds'NonExistentAddress{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_test_Nonce_NonExistentAddress"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(63,40,63,154)"), left{}(), format{}("%ctest_Nonce_NonExistentAddress%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AccountParamsTest'Unds'vm{}() : SortAccountParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AccountParamsTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(65,40,65,100)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AdditionalToken{}(SortAdditionalTokenContract{}, SortAdditionalTokenMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AdditionalToken"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3204,26,3204,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'AdditionalToken'Unds'count{}() : SortAdditionalTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AdditionalToken_count"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3206,38,3206,102)"), left{}(), format{}("%ccount%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AdditionalToken'Unds'incrementCount{}() : SortAdditionalTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AdditionalToken_incrementCount"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3208,38,3208,120)"), left{}(), format{}("%cincrementCount%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AdditionalToken'Unds'owner{}() : SortAdditionalTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AdditionalToken_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3210,38,3210,102)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest{}(SortAddrTestContract{}, SortAddrTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(194,26,194,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'AddrTest'Unds'IS'Unds'SCRIPT{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(196,31,196,96)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'IS'Unds'TEST{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(198,31,198,92)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'failed{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(200,31,200,90)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'kevm{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_kevm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(202,31,202,86)"), left{}(), format{}("%ckevm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'testFail'Unds'addr'Unds'false{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_testFail_addr_false"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(204,31,204,116)"), left{}(), format{}("%ctestFail_addr_false%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'testFail'Unds'addr'Unds'true{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_testFail_addr_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(206,31,206,114)"), left{}(), format{}("%ctestFail_addr_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'test'Unds'addr'Unds'false{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_test_addr_false"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(208,31,208,108)"), left{}(), format{}("%ctest_addr_false%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'test'Unds'addr'Unds'symbolic{}(SortInt{}) : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_test_addr_symbolic"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(210,31,210,118)"), left{}(), format{}("%ctest_addr_symbolic%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'test'Unds'addr'Unds'true{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_test_addr_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(212,31,212,106)"), left{}(), format{}("%ctest_addr_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'test'Unds'notBuiltinAddress'Unds'concrete{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_test_notBuiltinAddress_concrete"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(214,31,214,140)"), left{}(), format{}("%ctest_notBuiltinAddress_concrete%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'test'Unds'notBuiltinAddress'Unds'symbolic{}(SortInt{}) : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_test_notBuiltinAddress_symbolic"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(216,31,216,144)"), left{}(), format{}("%ctest_notBuiltinAddress_symbolic%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AddrTest'Unds'vm{}() : SortAddrTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AddrTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(218,31,218,82)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AllowChangesTest{}(SortAllowChangesTestContract{}, SortAllowChangesTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(328,26,328,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'AllowChangesTest'Unds'IS'Unds'SCRIPT{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(330,39,330,112)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AllowChangesTest'Unds'IS'Unds'TEST{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(332,39,332,108)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AllowChangesTest'Unds'failed{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(334,39,334,106)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AllowChangesTest'Unds'kevm{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest_kevm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(336,39,336,102)"), left{}(), format{}("%ckevm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AllowChangesTest'Unds'test{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest_test"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(338,39,338,102)"), left{}(), format{}("%ctest%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AllowChangesTest'Unds'testAllow{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest_testAllow"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(340,39,340,112)"), left{}(), format{}("%ctestAllow%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AllowChangesTest'Unds'testAllow'Unds'fail{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest_testAllow_fail"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(342,39,342,122)"), left{}(), format{}("%ctestAllow_fail%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AllowChangesTest'Unds'testFailAllowCallsToAddress{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest_testFailAllowCallsToAddress"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(344,39,344,148)"), left{}(), format{}("%ctestFailAllowCallsToAddress%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AllowChangesTest'Unds'testFailAllowChangesToStorage{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest_testFailAllowChangesToStorage"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(346,39,346,152)"), left{}(), format{}("%ctestFailAllowChangesToStorage%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AllowChangesTest'Unds'vm{}() : SortAllowChangesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AllowChangesTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(348,39,348,98)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest{}(SortArithmeticTestContract{}, SortArithmeticTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(504,26,504,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'IS'Unds'SCRIPT{}() : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(506,37,506,108)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'IS'Unds'TEST{}() : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(508,37,508,104)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'failed{}() : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(510,37,510,102)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'setUp{}() : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(512,37,512,100)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'decreasing'Unds'div{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_decreasing_div"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(514,37,514,140)"), left{}(), format{}("%ctest_decreasing_div%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'max1{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_max1"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(516,37,516,120)"), left{}(), format{}("%ctest_max1%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'max1'Unds'broken{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_max1_broken"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(518,37,518,134)"), left{}(), format{}("%ctest_max1_broken%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'max2{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_max2"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(520,37,520,120)"), left{}(), format{}("%ctest_max2%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wdiv'Unds'rounding{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_wdiv_rounding"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(522,37,522,138)"), left{}(), format{}("%ctest_wdiv_rounding%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'increasing{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_wmul_increasing"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(524,37,524,142)"), left{}(), format{}("%ctest_wmul_increasing%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'increasing'Unds'gt'Unds'one{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_wmul_increasing_gt_one"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(526,37,526,156)"), left{}(), format{}("%ctest_wmul_increasing_gt_one%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'increasing'Unds'overflow{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_wmul_increasing_overflow"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(528,37,528,160)"), left{}(), format{}("%ctest_wmul_increasing_overflow%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'increasing'Unds'positive{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_wmul_increasing_positive"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(530,37,530,160)"), left{}(), format{}("%ctest_wmul_increasing_positive%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'rounding{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_wmul_rounding"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(532,37,532,138)"), left{}(), format{}("%ctest_wmul_rounding%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'wdiv'Unds'inverse{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_wmul_wdiv_inverse"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(534,37,534,146)"), left{}(), format{}("%ctest_wmul_wdiv_inverse%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'wdiv'Unds'inverse'Unds'underflow{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_wmul_wdiv_inverse_underflow"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(536,37,536,166)"), left{}(), format{}("%ctest_wmul_wdiv_inverse_underflow%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'test'Unds'wmul'Unds'weakly'Unds'increasing'Unds'positive{}(SortInt{}, SortInt{}) : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_test_wmul_weakly_increasing_positive"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(538,37,538,174)"), left{}(), format{}("%ctest_wmul_weakly_increasing_positive%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ArithmeticTest'Unds'vm{}() : SortArithmeticTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ArithmeticTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(540,37,540,94)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest{}(SortAssertTestContract{}, SortAssertTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4032,26,4032,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'AssertTest'Unds'IS'Unds'SCRIPT{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4034,33,4034,100)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'IS'Unds'TEST{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4036,33,4036,96)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'failed{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4038,33,4038,94)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'setUp{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4040,33,4040,92)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'testFail'Unds'assert'Unds'false{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_testFail_assert_false"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4042,33,4042,124)"), left{}(), format{}("%ctestFail_assert_false%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'testFail'Unds'assert'Unds'true{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_testFail_assert_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4044,33,4044,122)"), left{}(), format{}("%ctestFail_assert_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'testFail'Unds'expect'Unds'revert{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_testFail_expect_revert"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4046,33,4046,126)"), left{}(), format{}("%ctestFail_expect_revert%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'test'Unds'assert'Unds'false{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_test_assert_false"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4048,33,4048,116)"), left{}(), format{}("%ctest_assert_false%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'test'Unds'assert'Unds'true{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_test_assert_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4050,33,4050,114)"), left{}(), format{}("%ctest_assert_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'test'Unds'assert'Unds'true'Unds'branch{}(SortInt{}) : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_test_assert_true_branch"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4052,33,4052,132)"), left{}(), format{}("%ctest_assert_true_branch%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'test'Unds'revert'Unds'branch{}(SortInt{}, SortInt{}) : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_test_revert_branch"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4054,33,4054,130)"), left{}(), format{}("%ctest_revert_branch%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssertTest'Unds'vm{}() : SortAssertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssertTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4056,33,4056,86)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssumeTest{}(SortAssumeTestContract{}, SortAssumeTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(723,26,723,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'AssumeTest'Unds'IS'Unds'SCRIPT{}() : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(725,33,725,100)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssumeTest'Unds'IS'Unds'TEST{}() : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(727,33,727,96)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssumeTest'Unds'failed{}() : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,33,729,94)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssumeTest'Unds'testFail'Unds'assume'Unds'false{}(SortInt{}, SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest_testFail_assume_false"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(731,33,731,136)"), left{}(), format{}("%ctestFail_assume_false%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssumeTest'Unds'testFail'Unds'assume'Unds'true{}(SortInt{}, SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest_testFail_assume_true"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(733,33,733,134)"), left{}(), format{}("%ctestFail_assume_true%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssumeTest'Unds'test'Unds'assume'Unds'false{}(SortInt{}, SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest_test_assume_false"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(735,33,735,128)"), left{}(), format{}("%ctest_assume_false%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssumeTest'Unds'test'Unds'assume'Unds'staticCall{}(SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest_test_assume_staticCall"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,33,737,130)"), left{}(), format{}("%ctest_assume_staticCall%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssumeTest'Unds'test'Unds'assume'Unds'true{}(SortInt{}, SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest_test_assume_true"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(739,33,739,126)"), left{}(), format{}("%ctest_assume_true%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssumeTest'Unds'test'Unds'multi'Unds'assume{}(SortInt{}, SortInt{}) : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest_test_multi_assume"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(741,33,741,128)"), left{}(), format{}("%ctest_multi_assume%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'AssumeTest'Unds'vm{}() : SortAssumeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_AssumeTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(743,33,743,86)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BlockParamsTest{}(SortBlockParamsTestContract{}, SortBlockParamsTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BlockParamsTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(855,26,855,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'BlockParamsTest'Unds'IS'Unds'SCRIPT{}() : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BlockParamsTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(857,38,857,110)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BlockParamsTest'Unds'IS'Unds'TEST{}() : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BlockParamsTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(859,38,859,106)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BlockParamsTest'Unds'failed{}() : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BlockParamsTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(861,38,861,104)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BlockParamsTest'Unds'testChainId{}(SortInt{}) : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BlockParamsTest_testChainId"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(863,38,863,118)"), left{}(), format{}("%ctestChainId%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'BlockParamsTest'Unds'testCoinBase{}() : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BlockParamsTest_testCoinBase"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(865,38,865,116)"), left{}(), format{}("%ctestCoinBase%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BlockParamsTest'Unds'testFee{}(SortInt{}) : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BlockParamsTest_testFee"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(867,38,867,110)"), left{}(), format{}("%ctestFee%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'BlockParamsTest'Unds'testRoll{}(SortInt{}) : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BlockParamsTest_testRoll"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(869,38,869,112)"), left{}(), format{}("%ctestRoll%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'BlockParamsTest'Unds'testWarp{}(SortInt{}) : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BlockParamsTest_testWarp"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(871,38,871,112)"), left{}(), format{}("%ctestWarp%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'BlockParamsTest'Unds'vm{}() : SortBlockParamsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BlockParamsTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(873,38,873,96)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BroadcastTest{}(SortBroadcastTestContract{}, SortBroadcastTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BroadcastTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(977,26,977,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'BroadcastTest'Unds'IS'Unds'SCRIPT{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BroadcastTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(979,36,979,106)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BroadcastTest'Unds'IS'Unds'TEST{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BroadcastTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(981,36,981,102)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BroadcastTest'Unds'deployNoArgs{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BroadcastTest_deployNoArgs"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(983,36,983,112)"), left{}(), format{}("%cdeployNoArgs%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BroadcastTest'Unds'deployOther{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BroadcastTest_deployOther"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(985,36,985,110)"), left{}(), format{}("%cdeployOther%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BroadcastTest'Unds'failed{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BroadcastTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(987,36,987,100)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BroadcastTest'Unds'setUp{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BroadcastTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(989,36,989,98)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BroadcastTest'Unds'testDeploy{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BroadcastTest_testDeploy"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(991,36,991,108)"), left{}(), format{}("%ctestDeploy%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BroadcastTest'Unds'vm{}() : SortBroadcastTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BroadcastTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(993,36,993,92)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BytesTypeTest{}(SortBytesTypeTestContract{}, SortBytesTypeTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BytesTypeTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4961,26,4961,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'BytesTypeTest'Unds'setUp{}() : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BytesTypeTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4963,36,4963,98)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'BytesTypeTest'Unds'testFail'Unds'bytes32{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BytesTypeTest_testFail_bytes32"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4965,36,4965,124)"), left{}(), format{}("%ctestFail_bytes32%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'BytesTypeTest'Unds'testFail'Unds'bytes4{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BytesTypeTest_testFail_bytes4"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4967,36,4967,122)"), left{}(), format{}("%ctestFail_bytes4%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'BytesTypeTest'Unds'test'Unds'bytes32{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BytesTypeTest_test_bytes32"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4969,36,4969,116)"), left{}(), format{}("%ctest_bytes32%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'BytesTypeTest'Unds'test'Unds'bytes32'Unds'fail{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BytesTypeTest_test_bytes32_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4971,36,4971,126)"), left{}(), format{}("%ctest_bytes32_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'BytesTypeTest'Unds'test'Unds'bytes4{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BytesTypeTest_test_bytes4"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4973,36,4973,114)"), left{}(), format{}("%ctest_bytes4%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'BytesTypeTest'Unds'test'Unds'bytes4'Unds'fail{}(SortInt{}) : SortBytesTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_BytesTypeTest_test_bytes4_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4975,36,4975,124)"), left{}(), format{}("%ctest_bytes4_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractBTest{}(SortContractBTestContract{}, SortContractBTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractBTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1178,26,1178,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ContractBTest'Unds'IS'Unds'SCRIPT{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractBTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1180,36,1180,106)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractBTest'Unds'IS'Unds'TEST{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractBTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1182,36,1182,102)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractBTest'Unds'failed{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractBTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1184,36,1184,100)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractBTest'Unds'setUp{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractBTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1186,36,1186,98)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractBTest'Unds'testCannotSubtract43{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractBTest_testCannotSubtract43"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1188,36,1188,128)"), left{}(), format{}("%ctestCannotSubtract43%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractBTest'Unds'testFailSubtract43{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractBTest_testFailSubtract43"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1190,36,1190,124)"), left{}(), format{}("%ctestFailSubtract43%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractBTest'Unds'testNumberIs42{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractBTest_testNumberIs42"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1192,36,1192,116)"), left{}(), format{}("%ctestNumberIs42%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractBTest'Unds'vm{}() : SortContractBTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractBTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1194,36,1194,92)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractTest{}(SortContractTestContract{}, SortContractTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1089,26,1089,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ContractTest'Unds'IS'Unds'SCRIPT{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1091,35,1091,104)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractTest'Unds'IS'Unds'TEST{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1093,35,1093,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractTest'Unds'failed{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1095,35,1095,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractTest'Unds'setUp{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1097,35,1097,96)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractTest'Unds'testExample{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractTest_testExample"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1099,35,1099,108)"), left{}(), format{}("%ctestExample%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ContractTest'Unds'vm{}() : SortContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ContractTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,35,1101,90)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DSTest{}(SortDSTestContract{}, SortDSTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DSTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6710,26,6710,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'DSTest'Unds'IS'Unds'TEST{}() : SortDSTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DSTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6712,29,6712,88)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DSTest'Unds'failed{}() : SortDSTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DSTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6714,29,6714,86)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DepthReverter{}(SortDepthReverterContract{}, SortDepthReverterMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DepthReverter"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1758,26,1758,124)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'DepthReverter'Unds'revertAtNextDepth{}() : SortDepthReverterMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DepthReverter_revertAtNextDepth"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1760,36,1760,122)"), left{}(), format{}("%crevertAtNextDepth%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Dummy{}(SortDummyContract{}, SortDummyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Dummy"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1637,26,1637,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'Dummy'Unds'numberA{}() : SortDummyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Dummy_numberA"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1639,28,1639,86)"), left{}(), format{}("%cnumberA%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DynamicTypes{}(SortDynamicTypesContract{}, SortDynamicTypesMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DynamicTypes"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1278,26,1278,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'DynamicTypes'Unds'IS'Unds'SCRIPT{}() : SortDynamicTypesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DynamicTypes_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1280,35,1280,104)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DynamicTypes'Unds'IS'Unds'TEST{}() : SortDynamicTypesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DynamicTypes_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1282,35,1282,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DynamicTypes'Unds'failed{}() : SortDynamicTypesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DynamicTypes_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1284,35,1284,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'DynamicTypes'Unds'test'Unds'dynamic'Unds'byte'Unds'read{}(SortBytes{}, SortInt{}) : SortDynamicTypesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DynamicTypes_test_dynamic_byte_read"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1286,35,1286,148)"), left{}(), format{}("%ctest_dynamic_byte_read%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'DynamicTypes'Unds'vm{}() : SortDynamicTypesMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_DynamicTypes_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1288,35,1288,90)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EmitContractTest{}(SortEmitContractTestContract{}, SortEmitContractTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EmitContractTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1379,26,1379,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'EmitContractTest'Unds'IS'Unds'SCRIPT{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EmitContractTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1381,39,1381,112)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EmitContractTest'Unds'IS'Unds'TEST{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EmitContractTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1383,39,1383,108)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EmitContractTest'Unds'failed{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EmitContractTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1385,39,1385,106)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EmitContractTest'Unds'testExpectEmit{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EmitContractTest_testExpectEmit"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1387,39,1387,122)"), left{}(), format{}("%ctestExpectEmit%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EmitContractTest'Unds'testExpectEmitCheckEmitter{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EmitContractTest_testExpectEmitCheckEmitter"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1389,39,1389,146)"), left{}(), format{}("%ctestExpectEmitCheckEmitter%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EmitContractTest'Unds'testExpectEmitDoNotCheckData{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EmitContractTest_testExpectEmitDoNotCheckData"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1391,39,1391,150)"), left{}(), format{}("%ctestExpectEmitDoNotCheckData%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EmitContractTest'Unds'vm{}() : SortEmitContractTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EmitContractTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1393,39,1393,98)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest{}(SortEnvTestContract{}, SortEnvTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1471,26,1471,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'EnvTest'Unds'IS'Unds'SCRIPT{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1473,30,1473,94)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'IS'Unds'TEST{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1475,30,1475,90)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'failed{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1477,30,1477,88)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'setUp{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1479,30,1479,86)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvAddress{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvAddress"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1481,30,1481,104)"), left{}(), format{}("%ctestEnvAddress%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvAddresseArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvAddresseArray"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1483,30,1483,116)"), left{}(), format{}("%ctestEnvAddresseArray%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvBool{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvBool"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1485,30,1485,98)"), left{}(), format{}("%ctestEnvBool%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvBoolArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvBoolArray"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1487,30,1487,108)"), left{}(), format{}("%ctestEnvBoolArray%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvBytes{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvBytes"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1489,30,1489,100)"), left{}(), format{}("%ctestEnvBytes%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvBytes32{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvBytes32"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1491,30,1491,104)"), left{}(), format{}("%ctestEnvBytes32%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvBytes32Array{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvBytes32Array"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1493,30,1493,114)"), left{}(), format{}("%ctestEnvBytes32Array%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvBytesArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvBytesArray"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1495,30,1495,110)"), left{}(), format{}("%ctestEnvBytesArray%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvInt{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvInt"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1497,30,1497,96)"), left{}(), format{}("%ctestEnvInt%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvIntArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvIntArray"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1499,30,1499,106)"), left{}(), format{}("%ctestEnvIntArray%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvString{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvString"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1501,30,1501,102)"), left{}(), format{}("%ctestEnvString%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvStringArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvStringArray"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1503,30,1503,112)"), left{}(), format{}("%ctestEnvStringArray%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvUInt{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvUInt"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1505,30,1505,98)"), left{}(), format{}("%ctestEnvUInt%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'testEnvUIntArray{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_testEnvUIntArray"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1507,30,1507,108)"), left{}(), format{}("%ctestEnvUIntArray%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'EnvTest'Unds'vm{}() : SortEnvTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_EnvTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1509,30,1509,80)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectCallTest{}(SortExpectCallTestContract{}, SortExpectCallTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectCallTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1681,26,1681,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ExpectCallTest'Unds'IS'Unds'SCRIPT{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectCallTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1683,37,1683,108)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectCallTest'Unds'IS'Unds'TEST{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectCallTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1685,37,1685,104)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectCallTest'Unds'failed{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectCallTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1687,37,1687,102)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectCallTest'Unds'kevm{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectCallTest_kevm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1689,37,1689,98)"), left{}(), format{}("%ckevm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectCallTest'Unds'testExpectRegularCall{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectCallTest_testExpectRegularCall"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1691,37,1691,132)"), left{}(), format{}("%ctestExpectRegularCall%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectCallTest'Unds'testExpectStaticCall{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectCallTest_testExpectStaticCall"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1693,37,1693,130)"), left{}(), format{}("%ctestExpectStaticCall%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectCallTest'Unds'vm{}() : SortExpectCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectCallTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1695,37,1695,94)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectEmit{}(SortExpectEmitContract{}, SortExpectEmitMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectEmit"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1335,26,1335,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ExpectEmit'Unds't{}() : SortExpectEmitMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectEmit_t"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1337,33,1337,84)"), left{}(), format{}("%ct%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest{}(SortExpectRevertTestContract{}, SortExpectRevertTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1802,26,1802,133)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'IS'Unds'SCRIPT{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1804,39,1804,112)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'IS'Unds'TEST{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1806,39,1806,108)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'failed{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1808,39,1808,106)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'testFail'Unds'ExpectRevert'Unds'failAndSuccess{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_testFail_ExpectRevert_failAndSuccess"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1810,39,1810,166)"), left{}(), format{}("%ctestFail_ExpectRevert_failAndSuccess%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'testFail'Unds'expectRevert'Unds'bytes4{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_testFail_expectRevert_bytes4"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1812,39,1812,150)"), left{}(), format{}("%ctestFail_expectRevert_bytes4%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'testFail'Unds'expectRevert'Unds'empty{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_testFail_expectRevert_empty"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1814,39,1814,148)"), left{}(), format{}("%ctestFail_expectRevert_empty%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'testFail'Unds'expectRevert'Unds'false{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_testFail_expectRevert_false"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1816,39,1816,148)"), left{}(), format{}("%ctestFail_expectRevert_false%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'testFail'Unds'expectRevert'Unds'multipleReverts{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_testFail_expectRevert_multipleReverts"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1818,39,1818,168)"), left{}(), format{}("%ctestFail_expectRevert_multipleReverts%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'ExpectRevert'Unds'increasedDepth{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_test_ExpectRevert_increasedDepth"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1820,39,1820,158)"), left{}(), format{}("%ctest_ExpectRevert_increasedDepth%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'expectRevert'Unds'bytes4{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_test_expectRevert_bytes4"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1822,39,1822,142)"), left{}(), format{}("%ctest_expectRevert_bytes4%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'expectRevert'Unds'encodedSymbolic{}(SortInt{}) : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_test_expectRevert_encodedSymbolic"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1824,39,1824,164)"), left{}(), format{}("%ctest_expectRevert_encodedSymbolic%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'expectRevert'Unds'internalCall{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_test_expectRevert_internalCall"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1826,39,1826,154)"), left{}(), format{}("%ctest_expectRevert_internalCall%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'expectRevert'Unds'message{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_test_expectRevert_message"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1828,39,1828,144)"), left{}(), format{}("%ctest_expectRevert_message%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'test'Unds'expectRevert'Unds'true{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_test_expectRevert_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1830,39,1830,138)"), left{}(), format{}("%ctest_expectRevert_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ExpectRevertTest'Unds'vm{}() : SortExpectRevertTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ExpectRevertTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1832,39,1832,98)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FfiTest{}(SortFfiTestContract{}, SortFfiTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FfiTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1997,26,1997,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'FfiTest'Unds'IS'Unds'SCRIPT{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FfiTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1999,30,1999,94)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FfiTest'Unds'IS'Unds'TEST{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FfiTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2001,30,2001,90)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FfiTest'Unds'failed{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FfiTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2003,30,2003,88)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FfiTest'Unds'setUp{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FfiTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2005,30,2005,86)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FfiTest'Unds'testFFIFOO{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FfiTest_testFFIFOO"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2007,30,2007,96)"), left{}(), format{}("%ctestFFIFOO%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FfiTest'Unds'testFFIScript{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FfiTest_testFFIScript"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2009,30,2009,102)"), left{}(), format{}("%ctestFFIScript%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FfiTest'Unds'testFFIScript2{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FfiTest_testFFIScript2"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2011,30,2011,104)"), left{}(), format{}("%ctestFFIScript2%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FfiTest'Unds'testffi{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FfiTest_testffi"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2013,30,2013,90)"), left{}(), format{}("%ctestffi%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FfiTest'Unds'vm{}() : SortFfiTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FfiTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2015,30,2015,80)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FilesTest{}(SortFilesTestContract{}, SortFilesTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FilesTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2105,26,2105,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'FilesTest'Unds'IS'Unds'SCRIPT{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FilesTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2107,32,2107,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FilesTest'Unds'IS'Unds'TEST{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FilesTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2109,32,2109,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FilesTest'Unds'failed{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FilesTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2111,32,2111,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FilesTest'Unds'testFailRemoveFile{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FilesTest_testFailRemoveFile"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2113,32,2113,116)"), left{}(), format{}("%ctestFailRemoveFile%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FilesTest'Unds'testReadWriteFile{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FilesTest_testReadWriteFile"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2115,32,2115,114)"), left{}(), format{}("%ctestReadWriteFile%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FilesTest'Unds'testReadWriteLine{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FilesTest_testReadWriteLine"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2117,32,2117,114)"), left{}(), format{}("%ctestReadWriteLine%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'FilesTest'Unds'vm{}() : SortFilesTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_FilesTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2119,32,2119,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest{}(SortForkTestContract{}, SortForkTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2197,26,2197,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ForkTest'Unds'IS'Unds'SCRIPT{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2199,31,2199,96)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'IS'Unds'TEST{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2201,31,2201,92)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'failed{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2203,31,2203,90)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'testActiveFork{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_testActiveFork"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2205,31,2205,106)"), left{}(), format{}("%ctestActiveFork%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'testAllRPCUrl{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_testAllRPCUrl"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2207,31,2207,104)"), left{}(), format{}("%ctestAllRPCUrl%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'testCreateFork{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_testCreateFork"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2209,31,2209,106)"), left{}(), format{}("%ctestCreateFork%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'testCreateForkBlock{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_testCreateForkBlock"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2211,31,2211,116)"), left{}(), format{}("%ctestCreateForkBlock%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'testCreateSelectFork{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_testCreateSelectFork"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2213,31,2213,118)"), left{}(), format{}("%ctestCreateSelectFork%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'testCreateSelectForkBlock{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_testCreateSelectForkBlock"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2215,31,2215,128)"), left{}(), format{}("%ctestCreateSelectForkBlock%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'testRPCUrl{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_testRPCUrl"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2217,31,2217,98)"), left{}(), format{}("%ctestRPCUrl%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'testRPCUrlRevert{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_testRPCUrlRevert"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2219,31,2219,110)"), left{}(), format{}("%ctestRPCUrlRevert%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'testRollFork{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_testRollFork"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2221,31,2221,102)"), left{}(), format{}("%ctestRollFork%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'testRollForkId{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_testRollForkId"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2223,31,2223,106)"), left{}(), format{}("%ctestRollForkId%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ForkTest'Unds'vm{}() : SortForkTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ForkTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2225,31,2225,82)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GetCodeTest{}(SortGetCodeTestContract{}, SortGetCodeTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GetCodeTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2350,26,2350,118)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'GetCodeTest'Unds'IS'Unds'SCRIPT{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GetCodeTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2352,34,2352,102)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GetCodeTest'Unds'IS'Unds'TEST{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GetCodeTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2354,34,2354,98)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GetCodeTest'Unds'failed{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GetCodeTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2356,34,2356,96)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GetCodeTest'Unds'setUp{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GetCodeTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2358,34,2358,94)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GetCodeTest'Unds'testGetCode{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GetCodeTest_testGetCode"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2360,34,2360,106)"), left{}(), format{}("%ctestGetCode%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'GetCodeTest'Unds'vm{}() : SortGetCodeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_GetCodeTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2362,34,2362,88)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'KEVMCheats{}(SortKEVMCheatsContract{}, SortKEVMCheatsMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheats"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2412,26,2412,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'KEVMCheatsBase{}(SortKEVMCheatsBaseContract{}, SortKEVMCheatsBaseMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheatsBase"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2434,26,2434,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'KEVMCheatsBase'Unds'allowCallsToAddress{}(SortInt{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheatsBase_allowCallsToAddress"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2436,37,2436,132)"), left{}(), format{}("%callowCallsToAddress%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'KEVMCheatsBase'Unds'allowChangesToStorage{}(SortInt{}, SortInt{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheatsBase_allowChangesToStorage"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2438,37,2438,144)"), left{}(), format{}("%callowChangesToStorage%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectCreate{}(SortInt{}, SortInt{}, SortBytes{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheatsBase_expectCreate"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2440,37,2440,140)"), left{}(), format{}("%cexpectCreate%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectCreate2{}(SortInt{}, SortInt{}, SortBytes{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheatsBase_expectCreate2"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2442,37,2442,142)"), left{}(), format{}("%cexpectCreate2%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectDelegateCall{}(SortInt{}, SortBytes{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheatsBase_expectDelegateCall"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2444,37,2444,144)"), left{}(), format{}("%cexpectDelegateCall%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectNoCall{}() : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheatsBase_expectNoCall"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2446,37,2446,114)"), left{}(), format{}("%cexpectNoCall%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectRegularCall{}(SortInt{}, SortInt{}, SortBytes{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheatsBase_expectRegularCall"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2448,37,2448,150)"), left{}(), format{}("%cexpectRegularCall%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'KEVMCheatsBase'Unds'expectStaticCall{}(SortInt{}, SortBytes{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheatsBase_expectStaticCall"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2452,37,2452,140)"), left{}(), format{}("%cexpectStaticCall%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'KEVMCheatsBase'Unds'symbolicStorage{}(SortInt{}) : SortKEVMCheatsBaseMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheatsBase_symbolicStorage"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2454,37,2454,124)"), left{}(), format{}("%csymbolicStorage%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'KEVMCheats'Unds'kevm{}() : SortKEVMCheatsMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_KEVMCheats_kevm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2414,33,2414,90)"), left{}(), format{}("%ckevm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LabelTest{}(SortLabelTestContract{}, SortLabelTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LabelTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2577,26,2577,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'LabelTest'Unds'IS'Unds'SCRIPT{}() : SortLabelTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LabelTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2579,32,2579,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LabelTest'Unds'IS'Unds'TEST{}() : SortLabelTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LabelTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2581,32,2581,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LabelTest'Unds'failed{}() : SortLabelTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LabelTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2583,32,2583,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LabelTest'Unds'testLabel{}() : SortLabelTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LabelTest_testLabel"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2585,32,2585,98)"), left{}(), format{}("%ctestLabel%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LabelTest'Unds'vm{}() : SortLabelTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LabelTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2587,32,2587,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest{}(SortLoopsTestContract{}, SortLoopsTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2653,26,2653,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'IS'Unds'SCRIPT{}() : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2655,32,2655,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'IS'Unds'TEST{}() : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2657,32,2657,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'failed{}() : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2659,32,2659,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'setUp{}() : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2661,32,2661,90)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testIsNotPrime{}(SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testIsNotPrime"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2663,32,2663,112)"), left{}(), format{}("%ctestIsNotPrime%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testIsPrime{}(SortInt{}, SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testIsPrime"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2665,32,2665,114)"), left{}(), format{}("%ctestIsPrime%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testIsPrimeBroken{}(SortInt{}, SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testIsPrimeBroken"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2667,32,2667,126)"), left{}(), format{}("%ctestIsPrimeBroken%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testIsPrimeOpt{}(SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testIsPrimeOpt"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2669,32,2669,112)"), left{}(), format{}("%ctestIsPrimeOpt%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testMax{}(SortK{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testMax"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2671,32,2671,96)"), left{}(), format{}("%ctestMax%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testMaxBroken{}(SortK{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testMaxBroken"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2673,32,2673,108)"), left{}(), format{}("%ctestMaxBroken%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testNthPrime{}(SortInt{}, SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testNthPrime"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2675,32,2675,116)"), left{}(), format{}("%ctestNthPrime%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testSort{}(SortK{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testSort"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2677,32,2677,98)"), left{}(), format{}("%ctestSort%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testSortBroken{}(SortK{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testSortBroken"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2679,32,2679,110)"), left{}(), format{}("%ctestSortBroken%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testSqrt{}(SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testSqrt"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2681,32,2681,100)"), left{}(), format{}("%ctestSqrt%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testSumToN{}(SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testSumToN"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2683,32,2683,104)"), left{}(), format{}("%ctestSumToN%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'testSumToNBroken{}(SortInt{}) : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_testSumToNBroken"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2685,32,2685,116)"), left{}(), format{}("%ctestSumToNBroken%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'LoopsTest'Unds'vm{}() : SortLoopsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_LoopsTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2687,32,2687,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MockCallTest{}(SortMockCallTestContract{}, SortMockCallTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MockCallTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2827,26,2827,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'MockCallTest'Unds'IS'Unds'SCRIPT{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MockCallTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2829,35,2829,104)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MockCallTest'Unds'IS'Unds'TEST{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MockCallTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2831,35,2831,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MockCallTest'Unds'failed{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MockCallTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2833,35,2833,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MockCallTest'Unds'setUp{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MockCallTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2835,35,2835,96)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MockCallTest'Unds'testMockCall{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MockCallTest_testMockCall"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2837,35,2837,110)"), left{}(), format{}("%ctestMockCall%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MockCallTest'Unds'testMockCallValue{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MockCallTest_testMockCallValue"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2839,35,2839,120)"), left{}(), format{}("%ctestMockCallValue%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MockCallTest'Unds'testMockCalls{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MockCallTest_testMockCalls"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2841,35,2841,112)"), left{}(), format{}("%ctestMockCalls%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MockCallTest'Unds'vm{}() : SortMockCallTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MockCallTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2843,35,2843,90)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyIERC20{}(SortMyIERC20Contract{}, SortMyIERC20Method{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyIERC20"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2905,26,2905,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'MyIERC20'Unds'approve{}(SortInt{}, SortInt{}) : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyIERC20_approve"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2907,31,2907,104)"), left{}(), format{}("%capprove%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyIERC20'Unds'balanceOf{}(SortInt{}) : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyIERC20_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2909,31,2909,100)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyIERC20'Unds'decimals{}() : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyIERC20_decimals"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2911,31,2911,94)"), left{}(), format{}("%cdecimals%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyIERC20'Unds'symbol{}() : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyIERC20_symbol"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2913,31,2913,90)"), left{}(), format{}("%csymbol%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyIERC20'Unds'totalSupply{}() : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyIERC20_totalSupply"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2915,31,2915,100)"), left{}(), format{}("%ctotalSupply%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyIERC20'Unds'transfer{}(SortInt{}, SortInt{}) : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyIERC20_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2917,31,2917,106)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyIERC20'Unds'transferFrom{}(SortInt{}, SortInt{}, SortInt{}) : SortMyIERC20Method{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyIERC20_transferFrom"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2919,31,2919,122)"), left{}(), format{}("%ctransferFrom%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyToken{}(SortMyTokenContract{}, SortMyTokenMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyToken"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2998,26,2998,106)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'MyToken'Unds'balanceOf{}(SortInt{}) : SortMyTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyToken_balanceOf"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3000,30,3000,98)"), left{}(), format{}("%cbalanceOf%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyToken'Unds'balances{}(SortInt{}) : SortMyTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyToken_balances"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3002,30,3002,96)"), left{}(), format{}("%cbalances%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyToken'Unds'pay{}(SortInt{}) : SortMyTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyToken_pay"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3004,30,3004,86)"), left{}(), format{}("%cpay%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'MyToken'Unds'token{}() : SortMyTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_MyToken_token"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3006,30,3006,86)"), left{}(), format{}("%ctoken%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnly{}(SortOwnerUpOnlyContract{}, SortOwnerUpOnlyMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnly"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3054,26,3054,118)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'OwnerUpOnlyTest{}(SortOwnerUpOnlyTestContract{}, SortOwnerUpOnlyTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnlyTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3119,26,3119,130)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'IS'Unds'SCRIPT{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnlyTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3121,38,3121,110)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'IS'Unds'TEST{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnlyTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3123,38,3123,106)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'failed{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnlyTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3125,38,3125,104)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'setUp{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnlyTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3127,38,3127,102)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'testFailIncrementAsNotOwner{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnlyTest_testFailIncrementAsNotOwner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3129,38,3129,146)"), left{}(), format{}("%ctestFailIncrementAsNotOwner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'testIncrementAsNotOwner{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnlyTest_testIncrementAsNotOwner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3131,38,3131,138)"), left{}(), format{}("%ctestIncrementAsNotOwner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'testIncrementAsOwner{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnlyTest_testIncrementAsOwner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3133,38,3133,132)"), left{}(), format{}("%ctestIncrementAsOwner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnlyTest'Unds'vm{}() : SortOwnerUpOnlyTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnlyTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3135,38,3135,96)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnly'Unds'count{}() : SortOwnerUpOnlyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnly_count"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3056,34,3056,94)"), left{}(), format{}("%ccount%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnly'Unds'increment{}() : SortOwnerUpOnlyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnly_increment"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3058,34,3058,102)"), left{}(), format{}("%cincrement%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'OwnerUpOnly'Unds'owner{}() : SortOwnerUpOnlyMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_OwnerUpOnly_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3060,34,3060,94)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest{}(SortPlainPrankTestContract{}, SortPlainPrankTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3264,26,3264,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'IS'Unds'SCRIPT{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3266,37,3266,108)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'IS'Unds'TEST{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3268,37,3268,104)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'failed{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3270,37,3270,102)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'internalCounter{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_internalCounter"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3272,37,3272,120)"), left{}(), format{}("%cinternalCounter%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'testFail'Unds'startPrank'Unds'existingAlready{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_testFail_startPrank_existingAlready"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3274,37,3274,160)"), left{}(), format{}("%ctestFail_startPrank_existingAlready%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'testFail'Unds'startPrank'Unds'internalCall{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_testFail_startPrank_internalCall"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3276,37,3276,154)"), left{}(), format{}("%ctestFail_startPrank_internalCall%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'test'Unds'prank'Unds'zeroAddress'Unds'true{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_test_prank_zeroAddress_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3278,37,3278,144)"), left{}(), format{}("%ctest_prank_zeroAddress_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'test'Unds'startPrankWithOrigin'Unds'true{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_test_startPrankWithOrigin_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3280,37,3280,150)"), left{}(), format{}("%ctest_startPrankWithOrigin_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'test'Unds'startPrank'Unds'true{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_test_startPrank_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3282,37,3282,130)"), left{}(), format{}("%ctest_startPrank_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'test'Unds'startPrank'Unds'zeroAddress'Unds'true{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_test_startPrank_zeroAddress_true"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3284,37,3284,154)"), left{}(), format{}("%ctest_startPrank_zeroAddress_true%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'test'Unds'stopPrank'Unds'notExistent{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_test_stopPrank_notExistent"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3286,37,3286,142)"), left{}(), format{}("%ctest_stopPrank_notExistent%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PlainPrankTest'Unds'vm{}() : SortPlainPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PlainPrankTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3288,37,3288,94)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Prank{}(SortPrankContract{}, SortPrankMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Prank"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3381,26,3381,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'PrankTest{}(SortPrankTestContract{}, SortPrankTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3456,26,3456,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'PrankTest'Unds'IS'Unds'SCRIPT{}() : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3458,32,3458,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PrankTest'Unds'IS'Unds'TEST{}() : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3460,32,3460,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PrankTest'Unds'failed{}() : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3462,32,3462,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PrankTest'Unds'setUp{}() : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3464,32,3464,90)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'PrankTest'Unds'testAddAsOwner{}(SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_testAddAsOwner"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3466,32,3466,112)"), left{}(), format{}("%ctestAddAsOwner%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'PrankTest'Unds'testAddStartPrank{}(SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_testAddStartPrank"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3468,32,3468,118)"), left{}(), format{}("%ctestAddStartPrank%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'PrankTest'Unds'testFailAddPrank{}(SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_testFailAddPrank"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3470,32,3470,116)"), left{}(), format{}("%ctestFailAddPrank%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'PrankTest'Unds'testSubtractAsTxOrigin{}(SortInt{}, SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_testSubtractAsTxOrigin"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3472,32,3472,136)"), left{}(), format{}("%ctestSubtractAsTxOrigin%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'PrankTest'Unds'testSubtractFail{}(SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_testSubtractFail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3474,32,3474,116)"), left{}(), format{}("%ctestSubtractFail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'PrankTest'Unds'testSubtractStartPrank{}(SortInt{}, SortInt{}) : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_testSubtractStartPrank"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3476,32,3476,136)"), left{}(), format{}("%ctestSubtractStartPrank%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'PrankTest'Unds'vm{}() : SortPrankTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_PrankTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3478,32,3478,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Prank'Unds'add{}(SortInt{}) : SortPrankMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Prank_add"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3383,28,3383,82)"), left{}(), format{}("%cadd%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Prank'Unds'count{}() : SortPrankMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Prank_count"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3385,28,3385,82)"), left{}(), format{}("%ccount%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Prank'Unds'owner{}() : SortPrankMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Prank_owner"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3387,28,3387,82)"), left{}(), format{}("%cowner%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Prank'Unds'subtract{}(SortInt{}) : SortPrankMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Prank_subtract"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3389,28,3389,92)"), left{}(), format{}("%csubtract%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'RecordLogsTest{}(SortRecordLogsTestContract{}, SortRecordLogsTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_RecordLogsTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3595,26,3595,127)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'RecordLogsTest'Unds'IS'Unds'SCRIPT{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_RecordLogsTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3597,37,3597,108)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'RecordLogsTest'Unds'IS'Unds'TEST{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_RecordLogsTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3599,37,3599,104)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'RecordLogsTest'Unds'failed{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_RecordLogsTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3601,37,3601,102)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'RecordLogsTest'Unds'setUp{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_RecordLogsTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3603,37,3603,100)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'RecordLogsTest'Unds'testRecordLogs{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_RecordLogsTest_testRecordLogs"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3605,37,3605,118)"), left{}(), format{}("%ctestRecordLogs%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'RecordLogsTest'Unds'vm{}() : SortRecordLogsTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_RecordLogsTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3607,37,3607,94)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Reverter{}(SortReverterContract{}, SortReverterMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Reverter"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1937,26,1937,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'Reverter'Unds'noRevert{}() : SortReverterMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Reverter_noRevert"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1939,31,1939,94)"), left{}(), format{}("%cnoRevert%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Reverter'Unds'revertWithReason{}(SortString{}) : SortReverterMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Reverter_revertWithReason"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1941,31,1941,117)"), left{}(), format{}("%crevertWithReason%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Reverter'Unds'revertWithoutReason{}() : SortReverterMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Reverter_revertWithoutReason"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1943,31,1943,116)"), left{}(), format{}("%crevertWithoutReason%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Safe{}(SortSafeContract{}, SortSafeMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Safe"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3657,26,3657,97)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SafeTest{}(SortSafeTestContract{}, SortSafeTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SafeTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3706,26,3706,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SafeTest'Unds'IS'Unds'SCRIPT{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SafeTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3708,31,3708,96)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SafeTest'Unds'IS'Unds'TEST{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SafeTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3710,31,3710,92)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SafeTest'Unds'failed{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SafeTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3712,31,3712,90)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SafeTest'Unds'setUp{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SafeTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3714,31,3714,88)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SafeTest'Unds'testWithdraw{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SafeTest_testWithdraw"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3716,31,3716,102)"), left{}(), format{}("%ctestWithdraw%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SafeTest'Unds'testWithdrawFuzz{}(SortInt{}) : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SafeTest_testWithdrawFuzz"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3718,31,3718,114)"), left{}(), format{}("%ctestWithdrawFuzz%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SafeTest'Unds'vm{}() : SortSafeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SafeTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3720,31,3720,82)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Safe'Unds'withdraw{}() : SortSafeMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Safe_withdraw"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3659,27,3659,86)"), left{}(), format{}("%cwithdraw%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Script{}(SortScriptContract{}, SortScriptMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Script"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3784,26,3784,103)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'Script'Unds'IS'Unds'SCRIPT{}() : SortScriptMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Script_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3786,29,3786,92)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Script'Unds'vm{}() : SortScriptMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Script_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3788,29,3788,78)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SetUpTest{}(SortSetUpTestContract{}, SortSetUpTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SetUpTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3841,26,3841,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SetUpTest'Unds'IS'Unds'SCRIPT{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SetUpTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3843,32,3843,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SetUpTest'Unds'IS'Unds'TEST{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SetUpTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3845,32,3845,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SetUpTest'Unds'failed{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SetUpTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3847,32,3847,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SetUpTest'Unds'setUp{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SetUpTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3849,32,3849,90)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SetUpTest'Unds'testSetUpCalled{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SetUpTest_testSetUpCalled"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3851,32,3851,110)"), left{}(), format{}("%ctestSetUpCalled%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SetUpTest'Unds'testSetUpCalledSymbolic{}(SortInt{}) : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SetUpTest_testSetUpCalledSymbolic"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3853,32,3853,130)"), left{}(), format{}("%ctestSetUpCalledSymbolic%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SetUpTest'Unds'vm{}() : SortSetUpTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SetUpTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3855,32,3855,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SignTest{}(SortSignTestContract{}, SortSignTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SignTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3934,26,3934,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SignTest'Unds'IS'Unds'SCRIPT{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SignTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3936,31,3936,96)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SignTest'Unds'IS'Unds'TEST{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SignTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3938,31,3938,92)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SignTest'Unds'failed{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SignTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3940,31,3940,90)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SignTest'Unds'setUp{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SignTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3942,31,3942,88)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SignTest'Unds'testSign{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SignTest_testSign"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3944,31,3944,94)"), left{}(), format{}("%ctestSign%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SignTest'Unds'testSign'Unds'symbolic{}(SortInt{}) : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SignTest_testSign_symbolic"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3946,31,3946,116)"), left{}(), format{}("%ctestSign_symbolic%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SignTest'Unds'vm{}() : SortSignTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SignTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3948,31,3948,82)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SnapshotTest{}(SortSnapshotTestContract{}, SortSnapshotTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SnapshotTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4173,26,4173,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SnapshotTest'Unds'IS'Unds'SCRIPT{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SnapshotTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4175,35,4175,104)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SnapshotTest'Unds'IS'Unds'TEST{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SnapshotTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4177,35,4177,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SnapshotTest'Unds'failed{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SnapshotTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4179,35,4179,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SnapshotTest'Unds'setUp{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SnapshotTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4181,35,4181,96)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SnapshotTest'Unds'testSnapshot{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SnapshotTest_testSnapshot"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4183,35,4183,110)"), left{}(), format{}("%ctestSnapshot%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SnapshotTest'Unds'vm{}() : SortSnapshotTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SnapshotTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4185,35,4185,90)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest{}(SortStoreTestContract{}, SortStoreTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4276,26,4276,112)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'StoreTest'Unds'IS'Unds'SCRIPT{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4278,32,4278,98)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'IS'Unds'TEST{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4280,32,4280,94)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'failed{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4282,32,4282,92)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'testAccesses{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_testAccesses"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4284,32,4284,104)"), left{}(), format{}("%ctestAccesses%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'testGasLoadColdVM{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_testGasLoadColdVM"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4286,32,4286,114)"), left{}(), format{}("%ctestGasLoadColdVM%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'testGasLoadWarmUp{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_testGasLoadWarmUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4288,32,4288,114)"), left{}(), format{}("%ctestGasLoadWarmUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'testGasLoadWarmVM{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_testGasLoadWarmVM"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4290,32,4290,114)"), left{}(), format{}("%ctestGasLoadWarmVM%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'testGasStoreColdVM{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_testGasStoreColdVM"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4292,32,4292,116)"), left{}(), format{}("%ctestGasStoreColdVM%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'testGasStoreWarmUp{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_testGasStoreWarmUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4294,32,4294,116)"), left{}(), format{}("%ctestGasStoreWarmUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'testGasStoreWarmVM{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_testGasStoreWarmVM"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4296,32,4296,116)"), left{}(), format{}("%ctestGasStoreWarmVM%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'testLoadNonExistent{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_testLoadNonExistent"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4298,32,4298,118)"), left{}(), format{}("%ctestLoadNonExistent%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'testStoreLoad{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_testStoreLoad"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4300,32,4300,106)"), left{}(), format{}("%ctestStoreLoad%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'testStoreLoadNonExistent{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_testStoreLoadNonExistent"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4302,32,4302,128)"), left{}(), format{}("%ctestStoreLoadNonExistent%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'StoreTest'Unds'vm{}() : SortStoreTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_StoreTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4304,32,4304,84)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SymbolicStorageTest{}(SortSymbolicStorageTestContract{}, SortSymbolicStorageTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SymbolicStorageTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4424,26,4424,142)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'SymbolicStorageTest'Unds'IS'Unds'SCRIPT{}() : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SymbolicStorageTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4426,42,4426,118)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SymbolicStorageTest'Unds'IS'Unds'TEST{}() : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SymbolicStorageTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4428,42,4428,114)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SymbolicStorageTest'Unds'failed{}() : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SymbolicStorageTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4430,42,4430,112)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SymbolicStorageTest'Unds'kevm{}() : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SymbolicStorageTest_kevm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4432,42,4432,108)"), left{}(), format{}("%ckevm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'SymbolicStorageTest'Unds'testFail'Unds'SymbolicStorage{}(SortInt{}) : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SymbolicStorageTest_testFail_SymbolicStorage"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4434,42,4434,152)"), left{}(), format{}("%ctestFail_SymbolicStorage%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SymbolicStorageTest'Unds'testFail'Unds'SymbolicStorage1{}(SortInt{}) : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SymbolicStorageTest_testFail_SymbolicStorage1"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4436,42,4436,154)"), left{}(), format{}("%ctestFail_SymbolicStorage1%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'SymbolicStorageTest'Unds'vm{}() : SortSymbolicStorageTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_SymbolicStorageTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4438,42,4438,104)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Test{}(SortTestContract{}, SortTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Test"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4537,26,4537,97)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'TestNumber{}(SortTestNumberContract{}, SortTestNumberMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_TestNumber"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4731,26,4731,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'TestNumber'Unds'IS'Unds'TEST{}() : SortTestNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_TestNumber_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4733,33,4733,96)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'TestNumber'Unds'failed{}() : SortTestNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_TestNumber_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4735,33,4735,94)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'TestNumber'Unds't{}(SortInt{}) : SortTestNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_TestNumber_t"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4737,33,4737,88)"), left{}(), format{}("%ct%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'TestNumber'Unds'testNumber{}() : SortTestNumberMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_TestNumber_testNumber"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4739,33,4739,102)"), left{}(), format{}("%ctestNumber%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Test'Unds'IS'Unds'SCRIPT{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Test_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4539,27,4539,88)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Test'Unds'IS'Unds'TEST{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Test_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4541,27,4541,84)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Test'Unds'failed{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Test_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4543,27,4543,82)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Test'Unds'vm{}() : SortTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Test_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4545,27,4545,74)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ToStringTest{}(SortToStringTestContract{}, SortToStringTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4800,26,4800,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ToStringTest'Unds'IS'Unds'SCRIPT{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest_IS_SCRIPT"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4802,35,4802,104)"), left{}(), format{}("%cIS_SCRIPT%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ToStringTest'Unds'IS'Unds'TEST{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest_IS_TEST"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4804,35,4804,100)"), left{}(), format{}("%cIS_TEST%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ToStringTest'Unds'failed{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest_failed"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4806,35,4806,98)"), left{}(), format{}("%cfailed%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ToStringTest'Unds'testAddressToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest_testAddressToString"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4808,35,4808,124)"), left{}(), format{}("%ctestAddressToString%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ToStringTest'Unds'testBoolToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest_testBoolToString"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4810,35,4810,118)"), left{}(), format{}("%ctestBoolToString%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ToStringTest'Unds'testBytes32ToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest_testBytes32ToString"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4812,35,4812,124)"), left{}(), format{}("%ctestBytes32ToString%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ToStringTest'Unds'testBytesToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest_testBytesToString"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4814,35,4814,120)"), left{}(), format{}("%ctestBytesToString%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ToStringTest'Unds'testIntToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest_testIntToString"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4816,35,4816,116)"), left{}(), format{}("%ctestIntToString%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ToStringTest'Unds'testUint256ToString{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest_testUint256ToString"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4818,35,4818,124)"), left{}(), format{}("%ctestUint256ToString%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ToStringTest'Unds'vm{}() : SortToStringTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ToStringTest_vm"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4820,35,4820,90)"), left{}(), format{}("%cvm%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Token{}(SortTokenContract{}, SortTokenMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Token"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4936,26,4936,100)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'Token'Unds'transfer{}(SortInt{}, SortInt{}) : SortTokenMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Token_transfer"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4938,28,4938,100)"), left{}(), format{}("%ctransfer%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest{}(SortUintTypeTestContract{}, SortUintTypeTestMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5037,26,5037,121)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'setUp{}() : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_setUp"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5039,35,5039,96)"), left{}(), format{}("%csetUp%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint104{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint104"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5041,35,5041,122)"), left{}(), format{}("%ctestFail_uint104%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint112{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint112"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5043,35,5043,122)"), left{}(), format{}("%ctestFail_uint112%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint120{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint120"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5045,35,5045,122)"), left{}(), format{}("%ctestFail_uint120%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint128{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint128"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5047,35,5047,122)"), left{}(), format{}("%ctestFail_uint128%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint136{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint136"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5049,35,5049,122)"), left{}(), format{}("%ctestFail_uint136%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint144{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint144"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5051,35,5051,122)"), left{}(), format{}("%ctestFail_uint144%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint152{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint152"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5053,35,5053,122)"), left{}(), format{}("%ctestFail_uint152%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint16{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint16"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5055,35,5055,120)"), left{}(), format{}("%ctestFail_uint16%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint160{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint160"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5057,35,5057,122)"), left{}(), format{}("%ctestFail_uint160%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint168{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint168"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5059,35,5059,122)"), left{}(), format{}("%ctestFail_uint168%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint176{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint176"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5061,35,5061,122)"), left{}(), format{}("%ctestFail_uint176%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint184{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint184"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5063,35,5063,122)"), left{}(), format{}("%ctestFail_uint184%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint192{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint192"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5065,35,5065,122)"), left{}(), format{}("%ctestFail_uint192%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint200{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint200"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5067,35,5067,122)"), left{}(), format{}("%ctestFail_uint200%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint208{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint208"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5069,35,5069,122)"), left{}(), format{}("%ctestFail_uint208%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint216{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint216"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5071,35,5071,122)"), left{}(), format{}("%ctestFail_uint216%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint224{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint224"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5073,35,5073,122)"), left{}(), format{}("%ctestFail_uint224%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint232{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint232"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5075,35,5075,122)"), left{}(), format{}("%ctestFail_uint232%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint24{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint24"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5077,35,5077,120)"), left{}(), format{}("%ctestFail_uint24%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint240{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint240"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5079,35,5079,122)"), left{}(), format{}("%ctestFail_uint240%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint248{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint248"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5081,35,5081,122)"), left{}(), format{}("%ctestFail_uint248%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint256{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint256"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5083,35,5083,122)"), left{}(), format{}("%ctestFail_uint256%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint32{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint32"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5085,35,5085,120)"), left{}(), format{}("%ctestFail_uint32%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint40{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint40"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5087,35,5087,120)"), left{}(), format{}("%ctestFail_uint40%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint48{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint48"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5089,35,5089,120)"), left{}(), format{}("%ctestFail_uint48%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint56{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint56"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5091,35,5091,120)"), left{}(), format{}("%ctestFail_uint56%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint64{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint64"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5093,35,5093,120)"), left{}(), format{}("%ctestFail_uint64%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint72{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint72"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5095,35,5095,120)"), left{}(), format{}("%ctestFail_uint72%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint8{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint8"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5097,35,5097,118)"), left{}(), format{}("%ctestFail_uint8%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint80{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint80"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5099,35,5099,120)"), left{}(), format{}("%ctestFail_uint80%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint88{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint88"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5101,35,5101,120)"), left{}(), format{}("%ctestFail_uint88%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'testFail'Unds'uint96{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_testFail_uint96"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5103,35,5103,120)"), left{}(), format{}("%ctestFail_uint96%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint104{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint104"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5105,35,5105,114)"), left{}(), format{}("%ctest_uint104%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint104'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint104_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5107,35,5107,124)"), left{}(), format{}("%ctest_uint104_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint112{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint112"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5109,35,5109,114)"), left{}(), format{}("%ctest_uint112%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint112'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint112_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5111,35,5111,124)"), left{}(), format{}("%ctest_uint112_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint120{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint120"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5113,35,5113,114)"), left{}(), format{}("%ctest_uint120%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint120'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint120_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5115,35,5115,124)"), left{}(), format{}("%ctest_uint120_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint128{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint128"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5117,35,5117,114)"), left{}(), format{}("%ctest_uint128%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint128'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint128_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5119,35,5119,124)"), left{}(), format{}("%ctest_uint128_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint136{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint136"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5121,35,5121,114)"), left{}(), format{}("%ctest_uint136%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint136'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint136_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5123,35,5123,124)"), left{}(), format{}("%ctest_uint136_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint144{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint144"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5125,35,5125,114)"), left{}(), format{}("%ctest_uint144%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint144'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint144_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5127,35,5127,124)"), left{}(), format{}("%ctest_uint144_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint152{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint152"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5129,35,5129,114)"), left{}(), format{}("%ctest_uint152%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint152'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint152_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5131,35,5131,124)"), left{}(), format{}("%ctest_uint152_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint16{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint16"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5133,35,5133,112)"), left{}(), format{}("%ctest_uint16%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint160{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint160"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5135,35,5135,114)"), left{}(), format{}("%ctest_uint160%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint160'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint160_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5137,35,5137,124)"), left{}(), format{}("%ctest_uint160_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint168{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint168"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5139,35,5139,114)"), left{}(), format{}("%ctest_uint168%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint168'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint168_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5141,35,5141,124)"), left{}(), format{}("%ctest_uint168_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint16'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint16_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5143,35,5143,122)"), left{}(), format{}("%ctest_uint16_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint176{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint176"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5145,35,5145,114)"), left{}(), format{}("%ctest_uint176%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint176'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint176_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5147,35,5147,124)"), left{}(), format{}("%ctest_uint176_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint184{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint184"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5149,35,5149,114)"), left{}(), format{}("%ctest_uint184%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint184'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint184_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5151,35,5151,124)"), left{}(), format{}("%ctest_uint184_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint192{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint192"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5153,35,5153,114)"), left{}(), format{}("%ctest_uint192%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint192'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint192_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5155,35,5155,124)"), left{}(), format{}("%ctest_uint192_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint200{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint200"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5157,35,5157,114)"), left{}(), format{}("%ctest_uint200%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint200'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint200_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5159,35,5159,124)"), left{}(), format{}("%ctest_uint200_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint208{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint208"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5161,35,5161,114)"), left{}(), format{}("%ctest_uint208%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint208'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint208_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5163,35,5163,124)"), left{}(), format{}("%ctest_uint208_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint216{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint216"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5165,35,5165,114)"), left{}(), format{}("%ctest_uint216%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint216'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint216_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5167,35,5167,124)"), left{}(), format{}("%ctest_uint216_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint224{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint224"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5169,35,5169,114)"), left{}(), format{}("%ctest_uint224%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint224'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint224_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5171,35,5171,124)"), left{}(), format{}("%ctest_uint224_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint232{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint232"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5173,35,5173,114)"), left{}(), format{}("%ctest_uint232%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint232'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint232_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5175,35,5175,124)"), left{}(), format{}("%ctest_uint232_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint24{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint24"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5177,35,5177,112)"), left{}(), format{}("%ctest_uint24%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint240{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint240"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5179,35,5179,114)"), left{}(), format{}("%ctest_uint240%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint240'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint240_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5181,35,5181,124)"), left{}(), format{}("%ctest_uint240_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint248{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint248"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5183,35,5183,114)"), left{}(), format{}("%ctest_uint248%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint248'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint248_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5185,35,5185,124)"), left{}(), format{}("%ctest_uint248_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint24'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint24_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5187,35,5187,122)"), left{}(), format{}("%ctest_uint24_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint256{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint256"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5189,35,5189,114)"), left{}(), format{}("%ctest_uint256%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint256'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint256_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5191,35,5191,124)"), left{}(), format{}("%ctest_uint256_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint32{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint32"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5193,35,5193,112)"), left{}(), format{}("%ctest_uint32%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint32'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint32_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5195,35,5195,122)"), left{}(), format{}("%ctest_uint32_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint40{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint40"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5197,35,5197,112)"), left{}(), format{}("%ctest_uint40%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint40'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint40_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5199,35,5199,122)"), left{}(), format{}("%ctest_uint40_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint48{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint48"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5201,35,5201,112)"), left{}(), format{}("%ctest_uint48%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint48'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint48_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5203,35,5203,122)"), left{}(), format{}("%ctest_uint48_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint56{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint56"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5205,35,5205,112)"), left{}(), format{}("%ctest_uint56%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint56'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint56_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5207,35,5207,122)"), left{}(), format{}("%ctest_uint56_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint64{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint64"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5209,35,5209,112)"), left{}(), format{}("%ctest_uint64%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint64'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint64_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5211,35,5211,122)"), left{}(), format{}("%ctest_uint64_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint72{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint72"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5213,35,5213,112)"), left{}(), format{}("%ctest_uint72%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint72'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint72_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5215,35,5215,122)"), left{}(), format{}("%ctest_uint72_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint8{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint8"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5217,35,5217,110)"), left{}(), format{}("%ctest_uint8%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint80{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint80"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5219,35,5219,112)"), left{}(), format{}("%ctest_uint80%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint80'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint80_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5221,35,5221,122)"), left{}(), format{}("%ctest_uint80_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint88{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint88"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5223,35,5223,112)"), left{}(), format{}("%ctest_uint88%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint88'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint88_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5225,35,5225,122)"), left{}(), format{}("%ctest_uint88_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint8'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint8_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5227,35,5227,120)"), left{}(), format{}("%ctest_uint8_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint96{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint96"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5229,35,5229,112)"), left{}(), format{}("%ctest_uint96%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'UintTypeTest'Unds'test'Unds'uint96'Unds'fail{}(SortInt{}) : SortUintTypeTestMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_UintTypeTest_test_uint96_fail"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5231,35,5231,122)"), left{}(), format{}("%ctest_uint96_fail%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ValueStore{}(SortValueStoreContract{}, SortValueStoreMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ValueStore"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(434,26,434,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'ValueStore'Unds'changeValue1{}(SortInt{}) : SortValueStoreMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ValueStore_changeValue1"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(436,33,436,110)"), left{}(), format{}("%cchangeValue1%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ValueStore'Unds'changeValue2{}(SortInt{}) : SortValueStoreMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ValueStore_changeValue2"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(438,33,438,110)"), left{}(), format{}("%cchangeValue2%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'ValueStore'Unds'value1{}() : SortValueStoreMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ValueStore_value1"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(440,33,440,94)"), left{}(), format{}("%cvalue1%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'ValueStore'Unds'value2{}() : SortValueStoreMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_ValueStore_value2"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(442,33,442,94)"), left{}(), format{}("%cvalue2%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm{}(SortVmContract{}, SortVmMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5923,26,5923,91)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'Vm'Unds'accesses{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_accesses"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5925,25,5925,86)"), left{}(), format{}("%caccesses%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'activeFork{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_activeFork"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5927,25,5927,86)"), left{}(), format{}("%cactiveFork%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'addr{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_addr"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5929,25,5929,78)"), left{}(), format{}("%caddr%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'assume{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_assume"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5931,25,5931,82)"), left{}(), format{}("%cassume%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'broadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_broadcast"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5933,25,5933,84)"), left{}(), format{}("%cbroadcast%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'chainId{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_chainId"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5937,25,5937,84)"), left{}(), format{}("%cchainId%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'clearMockedCalls{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_clearMockedCalls"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5939,25,5939,98)"), left{}(), format{}("%cclearMockedCalls%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'closeFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_closeFile"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5941,25,5941,91)"), left{}(), format{}("%ccloseFile%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'coinbase{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_coinbase"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5943,25,5943,86)"), left{}(), format{}("%ccoinbase%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'createFork{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_createFork"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5945,25,5945,93)"), left{}(), format{}("%ccreateFork%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'createSelectFork{}(SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_createSelectFork"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5949,25,5949,113)"), left{}(), format{}("%ccreateSelectFork%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'deal{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_deal"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5953,25,5953,86)"), left{}(), format{}("%cdeal%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'deriveKey{}(SortString{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_deriveKey"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5955,25,5955,99)"), left{}(), format{}("%cderiveKey%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envAddress{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envAddress"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5959,25,5959,93)"), left{}(), format{}("%cenvAddress%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envBool{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envBool"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5963,25,5963,87)"), left{}(), format{}("%cenvBool%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envBytes{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envBytes"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5967,25,5967,89)"), left{}(), format{}("%cenvBytes%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envBytes32{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envBytes32"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5971,25,5971,104)"), left{}(), format{}("%cenvBytes32%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envInt{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envInt"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5975,25,5975,96)"), left{}(), format{}("%cenvInt%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envString{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envString"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5979,25,5979,102)"), left{}(), format{}("%cenvString%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'envUint{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_envUint"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5983,25,5983,87)"), left{}(), format{}("%cenvUint%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'etch{}(SortInt{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_etch"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5987,25,5987,92)"), left{}(), format{}("%cetch%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'expectCall{}(SortInt{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_expectCall"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5989,25,5989,104)"), left{}(), format{}("%cexpectCall%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'expectEmit{}(SortInt{}, SortInt{}, SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_expectEmit"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5993,25,5993,114)"), left{}(), format{}("%cexpectEmit%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'expectRevert{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_expectRevert"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(5997,25,5997,94)"), left{}(), format{}("%cexpectRevert%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'fee{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_fee"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6003,25,6003,76)"), left{}(), format{}("%cfee%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'ffi{}(SortK{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_ffi"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6005,25,6005,74)"), left{}(), format{}("%cffi%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'getCode{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_getCode"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6007,25,6007,87)"), left{}(), format{}("%cgetCode%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'getNonce{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_getNonce"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6009,25,6009,86)"), left{}(), format{}("%cgetNonce%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'getRecordedLogs{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_getRecordedLogs"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6011,25,6011,96)"), left{}(), format{}("%cgetRecordedLogs%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'label{}(SortInt{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_label"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6013,25,6013,91)"), left{}(), format{}("%clabel%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'load{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_load"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6015,25,6015,86)"), left{}(), format{}("%cload%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'mockCall{}(SortInt{}, SortInt{}, SortBytes{}, SortBytes{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_mockCall"), priorities{}(), right{}(), terminals{}("1101010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6017,25,6017,122)"), left{}(), format{}("%cmockCall%r %c(%r %1 %c,%r %2 %c,%r %3 %c,%r %4 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'prank{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_prank"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6021,25,6021,88)"), left{}(), format{}("%cprank%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'readFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_readFile"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6025,25,6025,89)"), left{}(), format{}("%creadFile%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'readLine{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_readLine"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6027,25,6027,89)"), left{}(), format{}("%creadLine%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'record{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_record"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6029,25,6029,78)"), left{}(), format{}("%crecord%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'recordLogs{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_recordLogs"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6031,25,6031,86)"), left{}(), format{}("%crecordLogs%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'removeFile{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_removeFile"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6033,25,6033,93)"), left{}(), format{}("%cremoveFile%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'revertTo{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_revertTo"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6035,25,6035,86)"), left{}(), format{}("%crevertTo%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'roll{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_roll"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6037,25,6037,78)"), left{}(), format{}("%croll%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'rollFork{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_rollFork"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6039,25,6039,94)"), left{}(), format{}("%crollFork%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'rpcUrl{}(SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_rpcUrl"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6043,25,6043,85)"), left{}(), format{}("%crpcUrl%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'rpcUrls{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_rpcUrls"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6045,25,6045,80)"), left{}(), format{}("%crpcUrls%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'selectFork{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_selectFork"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6047,25,6047,90)"), left{}(), format{}("%cselectFork%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'setEnv{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_setEnv"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6049,25,6049,96)"), left{}(), format{}("%csetEnv%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'setNonce{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_setNonce"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6051,25,6051,94)"), left{}(), format{}("%csetNonce%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'sign{}(SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_sign"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6053,25,6053,86)"), left{}(), format{}("%csign%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'snapshot{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_snapshot"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6055,25,6055,82)"), left{}(), format{}("%csnapshot%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'startBroadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_startBroadcast"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6057,25,6057,94)"), left{}(), format{}("%cstartBroadcast%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'startPrank{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_startPrank"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6061,25,6061,90)"), left{}(), format{}("%cstartPrank%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'stopBroadcast{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_stopBroadcast"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6065,25,6065,92)"), left{}(), format{}("%cstopBroadcast%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'stopPrank{}() : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_stopPrank"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6067,25,6067,84)"), left{}(), format{}("%cstopPrank%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'store{}(SortInt{}, SortInt{}, SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_store"), priorities{}(), right{}(), terminals{}("11010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6069,25,6069,96)"), left{}(), format{}("%cstore%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'toString{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_toString"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6071,25,6071,86)"), left{}(), format{}("%ctoString%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'warp{}(SortInt{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_warp"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6083,25,6083,78)"), left{}(), format{}("%cwarp%r %c(%r %1 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'writeFile{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_writeFile"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6085,25,6085,102)"), left{}(), format{}("%cwriteFile%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'Vm'Unds'writeLine{}(SortString{}, SortString{}) : SortVmMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_Vm_writeLine"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(6087,25,6087,102)"), left{}(), format{}("%cwriteLine%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError{}(SortStdErrorContract{}, SortStdErrorMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4583,26,4583,109)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'stdError'Unds'arithmeticError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_arithmeticError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4585,31,4585,108)"), left{}(), format{}("%carithmeticError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'assertionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_assertionError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4587,31,4587,106)"), left{}(), format{}("%cassertionError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'divisionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_divisionError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4589,31,4589,104)"), left{}(), format{}("%cdivisionError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'encodeStorageError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_encodeStorageError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4591,31,4591,114)"), left{}(), format{}("%cencodeStorageError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'enumConversionError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_enumConversionError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4593,31,4593,116)"), left{}(), format{}("%cenumConversionError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'indexOOBError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_indexOOBError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4595,31,4595,104)"), left{}(), format{}("%cindexOOBError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'lowLevelError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_lowLevelError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4597,31,4597,104)"), left{}(), format{}("%clowLevelError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'memOverflowError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_memOverflowError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4599,31,4599,110)"), left{}(), format{}("%cmemOverflowError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'popError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_popError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4601,31,4601,94)"), left{}(), format{}("%cpopError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdError'Unds'zeroVarError{}() : SortStdErrorMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdError_zeroVarError"), priorities{}(), right{}(), terminals{}("111"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4603,31,4603,102)"), left{}(), format{}("%czeroVarError%r %c(%r %c)%r"), injective{}()] + symbol Lblmethod'Unds'stdStorage{}(SortStdStorageContract{}, SortStdStorageMethod{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdStorage"), priorities{}(), right{}(), terminals{}("010"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4689,26,4689,115)"), left{}(), format{}("%1 %c.%r %2"), function{}()] + symbol Lblmethod'Unds'stdStorage'Unds'bytesToBytes32{}(SortBytes{}, SortInt{}) : SortStdStorageMethod{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/tests/foundry/out/kompiled/foundry.k)"), symbol'Kywd'{}("method_stdStorage_bytesToBytes32"), priorities{}(), right{}(), terminals{}("110101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4691,33,4691,128)"), left{}(), format{}("%cbytesToBytes32%r %c(%r %1 %c,%r %2 %c)%r"), injective{}()] hooked-symbol LblminInt'LParUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), smt-hook{}("(ite (< #1 #2) #1 #2)"), right{}(), terminals{}("110101"), hook{}("INT.min"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1070,18,1070,114)"), left{}(), format{}("%cminInt%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] symbol LblminSFixed128x10'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(163,20,163,45)"), left{}(), format{}("%cminSFixed128x10%r"), alias'Kywd'{}(), injective{}()] symbol LblminSInt128'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(95,20,95,45)"), left{}(), format{}("%cminSInt128%r"), alias'Kywd'{}(), injective{}()] @@ -3146,7 +3146,7 @@ module TEST symbol LblnoValueCell{}() : SortValueCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("ValueCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoValueCell%r"), injective{}()] symbol LblnoWhitelistCell{}() : SortWhitelistCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("WhitelistCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoWhitelistCell%r"), injective{}()] symbol LblnoWordStackCell{}() : SortWordStackCellOpt{} [functional{}(), constructor{}(), cellOptAbsent{}("WordStackCell"), priorities{}(), right{}(), terminals{}("1"), left{}(), format{}("%cnoWordStackCell%r"), injective{}()] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), klabel{}("notBool_"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(910,19,910,172)"), left{}(), format{}("%cnotBool%r %1"), function{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("notBool_"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), smt-hook{}("not"), boolOperation{}(), right{}(), terminals{}("10"), hook{}("BOOL.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(910,19,910,172)"), left{}(), format{}("%cnotBool%r %1"), function{}()] symbol LblnotMaxUInt160'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(243,20,243,43)"), left{}(), format{}("%cnotMaxUInt160%r"), alias'Kywd'{}(), injective{}()] symbol LblnotMaxUInt224'Unds'WORD'Unds'Int{}() : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/word.md)"), macro{}(), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(244,20,244,43)"), left{}(), format{}("%cnotMaxUInt224%r"), alias'Kywd'{}(), injective{}()] hooked-symbol LblordChar'LParUndsRParUnds'STRING-COMMON'Unds'Int'Unds'String{}(SortString{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("ordChar"), hook{}("STRING.ord"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1540,18,1540,70)"), left{}(), format{}("%cordChar%r %c(%r %1 %c)%r"), function{}()] @@ -3717,7 +3717,7 @@ module TEST symbol LblsetBloomFilterBits'LParUndsRParUnds'EVM'Unds'Int'Unds'ByteArray{}(SortBytes{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("setBloomFilterBits"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(710,20,710,60)"), left{}(), format{}("%csetBloomFilterBits%r %c(%r %1 %c)%r"), function{}()] symbol Lblsgn'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sgn"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(45,20,45,49)"), left{}(), format{}("%csgn%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsignExtendBitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("signExtendBitRangeInt"), hook{}("INT.signExtendBitRange"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,18,1105,113)"), left{}(), format{}("%csignExtendBitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("signedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1853,25,1853,63)"), left{}(), format{}("%cSigned%r"), injective{}()] + symbol LblsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("signedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1853,25,1853,63)"), left{}(), format{}("%cSigned%r"), injective{}()] symbol Lblsignextend'LParUndsCommUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("signextend"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(209,20,209,61)"), left{}(), format{}("%csignextend%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'LIST'Unds'Int'Unds'List{}(SortList{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), smtlib{}("smt_seq_len"), terminals{}("1101"), klabel{}("sizeList"), hook{}("LIST.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(830,18,830,117)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblsize'LParUndsRParUnds'MAP'Unds'Int'Unds'Map{}(SortMap{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("sizeMap"), hook{}("MAP.size"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(373,18,373,99)"), left{}(), format{}("%csize%r %c(%r %1 %c)%r"), function{}()] @@ -3726,8 +3726,8 @@ module TEST hooked-symbol LblsrandInt'LParUndsRParUnds'INT-COMMON'Unds'K'Unds'Int{}(SortInt{}) : SortK{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), impure{}(), klabel{}("srandInt"), hook{}("INT.srand"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1139,16,1139,65)"), left{}(), format{}("%csrandInt%r %c(%r %1 %c)%r"), function{}()] hooked-symbol LblsubstrBytes'LParUndsCommUndsCommUndsRParUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Int'Unds'Int{}(SortBytes{}, SortInt{}, SortInt{}) : SortBytes{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("substrBytes"), hook{}("BYTES.substr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1927,20,1927,101)"), left{}(), format{}("%csubstrBytes%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblsubstrString'LParUndsCommUndsCommUndsRParUnds'STRING-COMMON'Unds'String'Unds'String'Unds'Int'Unds'Int{}(SortString{}, SortInt{}, SortInt{}) : SortString{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("substrString"), hook{}("STRING.substr"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1555,21,1555,117)"), left{}(), format{}("%csubstrString%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - symbol LblunparseByteStack{}(SortBytes{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("unparseByteStack"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(187,23,187,99)"), left{}(), format{}("%c#unparseByteStack%r %c(%r %1 %c)%r"), function{}()] - symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}("unsignedBytes"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1854,25,1854,67)"), left{}(), format{}("%cUnsigned%r"), injective{}()] + symbol LblunparseByteStack{}(SortBytes{}) : SortString{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/serialization.md)"), symbol'Kywd'{}("unparseByteStack"), priorities{}(), right{}(), terminals{}("1101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(187,23,187,99)"), left{}(), format{}("%c#unparseByteStack%r %c(%r %1 %c)%r"), function{}()] + symbol LblunsignedBytes{}() : SortSignedness{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("unsignedBytes"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1854,25,1854,67)"), left{}(), format{}("%cUnsigned%r"), injective{}()] hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("updateList"), hook{}("LIST.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(794,19,794,97)"), left{}(), format{}("%cupdateList%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), priorities{}(), right{}(), terminals{}("110101"), klabel{}("updateMap"), hook{}("MAP.updateAll"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), left{}(), format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("values"), hook{}("MAP.values"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), left{}(), format{}("%cvalues%r %c(%r %1 %c)%r"), function{}()] @@ -3735,7 +3735,7 @@ module TEST symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'ByteArray{}(SortInt{}, SortList{}, SortBytes{}) : SortSubstateLogEntry{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), priorities{}(), right{}(), terminals{}("1010101"), klabel{}("logEntry"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(472,33,472,86)"), left{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), injective{}()] symbol Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM'Unds'Accounts'Unds'AccountsCellFragment'Unds'Set'Unds'SubstateCellFragment{}(SortAccountsCellFragment{}, SortSet{}, SortSubstateCellFragment{}) : SortAccounts{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm.md)"), priorities{}(), right{}(), terminals{}("1010101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(228,25,228,86)"), left{}(), format{}("%c{%r %1 %c|%r %2 %c|%r %3 %c}%r"), injective{}()] symbol Lbl'LBraUndsPipeUndsRBraUnds'FOUNDRY-CHEAT-CODES'Unds'StorageSlot'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortStorageSlot{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/foundry.md)"), priorities{}(), right{}(), terminals{}("10101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(928,28,928,47)"), left{}(), format{}("%c{%r %1 %c|%r %2 %c}%r"), injective{}()] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}(), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), klabel{}("~Int_"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1038,18,1038,168)"), left{}(), format{}("%c~Int%r %1"), function{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/1q956x7y7ypr9csrn858xlvqk5wf6q2h-k-5.5.113-809e5a832d21084cac6074a1efb04cb39b0584e9-maven/include/kframework/builtin/domains.md)"), total{}(), symbol'Kywd'{}("~Int_"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), terminals{}("10"), hook{}("INT.not"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1038,18,1038,168)"), left{}(), format{}("%c~Int%r %1"), function{}()] symbol Lbl'Tild'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/dev/src/evm-semantics/.build/usr/lib/kevm/include/kframework/evm-types.md)"), total{}(), priorities{}(), right{}(), terminals{}("10"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(163,20,163,55)"), left{}(), format{}("%c~Word%r %1"), function{}()] // generated axioms diff --git a/test/rpc-server/resources/a-to-f/definition.kore b/test/rpc-server/resources/a-to-f/definition.kore index 16514d3354..897f26a64b 100644 --- a/test/rpc-server/resources/a-to-f/definition.kore +++ b/test/rpc-server/resources/a-to-f/definition.kore @@ -83,33 +83,33 @@ module TEST hooked-sort SortBool{} [hook{}("BOOL.Bool"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(784,3,784,32)"), hasDomainValues{}()] // symbols - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(653,19,653,147)"), left{}(), format{}("%c.List%r"), function{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,129)"), left{}(), format{}("%c.Map%r"), function{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(533,18,533,123)"), left{}(), format{}("%c.Set%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(653,19,653,147)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,129)"), left{}(), format{}("%c.Map%r"), function{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(533,18,533,123)"), left{}(), format{}("%c.Set%r"), function{}()] symbol Lbl'-LT-'generatedCounter'-GT-'{}(SortInt{}) : SortGeneratedCounterCell{} [functional{}(), constructor{}(), cellName{}("generatedCounter"), priorities{}(), right{}(), terminals{}("101"), left{}(), format{}("%c%r%i%n%1%d%n%c%r"), injective{}(), cell{}()] symbol Lbl'-LT-'generatedTop'-GT-'{}(SortKCell{}, SortGeneratedCounterCell{}) : SortGeneratedTopCell{} [functional{}(), constructor{}(), cellName{}("generatedTop"), priorities{}(), right{}(), terminals{}("1001"), left{}(), format{}("%1"), injective{}(), cell{}(), topcell{}()] symbol Lbl'-LT-'generatedTop'-GT-'-fragment{}(SortKCellOpt{}, SortGeneratedCounterCellOpt{}) : SortGeneratedTopCellFragment{} [functional{}(), constructor{}(), cellFragment{}("GeneratedTopCell"), priorities{}(), right{}(), terminals{}("1001"), left{}(), format{}("%c-fragment%r %1 %2 %c-fragment%r"), injective{}()] symbol Lbl'-LT-'k'-GT-'{}(SortK{}) : SortKCell{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/jost/work/RV/code/haskell-backend/test/rpc-server/resources/a-to-f/test.k)"), cellName{}("k"), maincell{}(), priorities{}(), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(10,17,10,36)"), left{}(), format{}("%c%r%i%n%1%d%n%c%r"), injective{}(), cell{}(), topcell{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(672,20,672,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(719,19,719,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(661,19,661,137)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,145)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(573,18,573,147)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(581,19,581,107)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(541,18,541,124)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(672,20,672,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(719,19,719,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(661,19,661,137)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,145)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(573,18,573,147)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(581,19,581,107)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(541,18,541,124)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,121)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,92)"), left{}(), format{}("%1 %c<=Map%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(590,19,590,86)"), left{}(), format{}("%1 %c<=Set%r %2"), function{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(645,19,645,193)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(525,18,525,177)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(645,19,645,193)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(525,18,525,177)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(681,19,681,108)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,122)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,122)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,139)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(728,19,728,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,94)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,156)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,156)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(552,18,552,89)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] hooked-symbol Lblchoice'LParUndsRParUnds'MAP'Unds'KItem'Unds'Map{}(SortMap{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Map:choice"), hook{}("MAP.choice"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(393,20,393,101)"), left{}(), format{}("%cchoice%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblchoice'LParUndsRParUnds'SET'Unds'KItem'Unds'Set{}(SortSet{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/j2mc5667p3zvn8xma85mlm2mwfvwgb3q-k-5.3.175-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Set:choice"), hook{}("SET.choice"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(608,20,608,95)"), left{}(), format{}("%cchoice%r %c(%r %1 %c)%r"), function{}()] diff --git a/test/rpc-server/resources/empty/definition.kore b/test/rpc-server/resources/empty/definition.kore index f256efd400..76394bf51b 100644 --- a/test/rpc-server/resources/empty/definition.kore +++ b/test/rpc-server/resources/empty/definition.kore @@ -82,33 +82,33 @@ module TEST hooked-sort SortBool{} [hook{}("BOOL.Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(784,3,784,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), hasDomainValues{}()] // symbols - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(653,19,653,147)"), left{}(), format{}("%c.List%r"), function{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,129)"), left{}(), format{}("%c.Map%r"), function{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(533,18,533,123)"), left{}(), format{}("%c.Set%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(653,19,653,147)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,129)"), left{}(), format{}("%c.Map%r"), function{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(533,18,533,123)"), left{}(), format{}("%c.Set%r"), function{}()] symbol Lbl'-LT-'generatedCounter'-GT-'{}(SortInt{}) : SortGeneratedCounterCell{} [functional{}(), constructor{}(), cellName{}("generatedCounter"), priorities{}(), right{}(), terminals{}("101"), left{}(), format{}("%c%r%i%n%1%d%n%c%r"), injective{}(), cell{}()] symbol Lbl'-LT-'generatedTop'-GT-'{}(SortKCell{}, SortGeneratedCounterCell{}) : SortGeneratedTopCell{} [functional{}(), constructor{}(), cellName{}("generatedTop"), priorities{}(), right{}(), terminals{}("1001"), left{}(), format{}("%1"), injective{}(), cell{}(), topcell{}()] symbol Lbl'-LT-'generatedTop'-GT-'-fragment{}(SortKCellOpt{}, SortGeneratedCounterCellOpt{}) : SortGeneratedTopCellFragment{} [functional{}(), constructor{}(), cellFragment{}("GeneratedTopCell"), priorities{}(), right{}(), terminals{}("1001"), left{}(), format{}("%c-fragment%r %1 %2 %c-fragment%r"), injective{}()] symbol Lbl'-LT-'k'-GT-'{}(SortK{}) : SortKCell{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/kast.md)"), cellName{}("k"), maincell{}(), priorities{}(), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), right{}(), terminals{}("101"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(523,17,523,32)"), left{}(), format{}("%c%r%i%n%1%d%n%c%r"), injective{}(), cell{}(), topcell{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(672,20,672,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(719,19,719,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(661,19,661,137)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,145)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(573,18,573,147)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(581,19,581,107)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(541,18,541,124)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(672,20,672,99)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(719,19,719,120)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(661,19,661,137)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,145)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(573,18,573,147)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(581,19,581,107)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(541,18,541,124)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), injective{}(), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,121)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(383,19,383,92)"), left{}(), format{}("%1 %c<=Map%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(590,19,590,86)"), left{}(), format{}("%1 %c<=Set%r %2"), function{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(645,19,645,193)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(525,18,525,177)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(645,19,645,193)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(525,18,525,177)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(681,19,681,108)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,122)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,122)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,139)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(728,19,728,102)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,94)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,156)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,156)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), injective{}(), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(552,18,552,89)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] hooked-symbol Lblchoice'LParUndsRParUnds'MAP'Unds'KItem'Unds'Map{}(SortMap{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Map:choice"), hook{}("MAP.choice"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(393,20,393,101)"), left{}(), format{}("%cchoice%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lblchoice'LParUndsRParUnds'SET'Unds'KItem'Unds'Set{}(SortSet{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/xf25ilkcjqgxahdsk4409b4m0ggzpg8k-k-5.3.161-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101"), klabel{}("Set:choice"), hook{}("SET.choice"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(608,20,608,95)"), left{}(), format{}("%cchoice%r %c(%r %1 %c)%r"), function{}()] diff --git a/test/rpc-server/resources/int-and-bool/definition.kore b/test/rpc-server/resources/int-and-bool/definition.kore index ab4cc0ba68..309b4c6598 100644 --- a/test/rpc-server/resources/int-and-bool/definition.kore +++ b/test/rpc-server/resources/int-and-bool/definition.kore @@ -83,64 +83,64 @@ module TEST // symbols hooked-symbol Lbl'Hash'if'UndsHash'then'UndsHash'else'UndsHash'fi'Unds'K-EQUAL-SYNTAX'Unds'Sort'Unds'Bool'Unds'Sort'Unds'Sort{SortSort}(SortBool{}, SortSort, SortSort) : SortSort [format{}("%c#if%r %1 %c#then%r %2 %c#else%r %3 %c#fi%r"), function{}(), functional{}(), hook{}("KEQUAL.ite"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2264,26,2264,121)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("ite"), terminals{}("1010101"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'-LT-'generatedCounter'-GT-'{}(SortInt{}) : SortGeneratedCounterCell{} [cell{}(), cellName{}("generatedCounter"), constructor{}(), format{}("%c%r%i%n%1%d%n%c%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("101")] symbol Lbl'-LT-'generatedTop'-GT-'{}(SortKCell{}, SortGeneratedCounterCell{}) : SortGeneratedTopCell{} [cell{}(), cellName{}("generatedTop"), constructor{}(), format{}("%1"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1001"), topcell{}()] symbol Lbl'-LT-'generatedTop'-GT-'-fragment{}(SortKCellOpt{}, SortGeneratedCounterCellOpt{}) : SortGeneratedTopCellFragment{} [cellFragment{}("GeneratedTopCell"), constructor{}(), format{}("%c-fragment%r %1 %2 %c-fragment%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1001")] symbol Lbl'-LT-'k'-GT-'{}(SortK{}) : SortKCell{} [cell{}(), cellName{}("k"), constructor{}(), format{}("%c%r%i%n%1%d%n%c%r"), functional{}(), injective{}(), left{}(), maincell{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(535,17,535,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/kast.md)"), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), priorities{}(), right{}(), terminals{}("101"), topcell{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds-LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %candBool%r %2"), function{}(), functional{}(), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %candBool%r %2"), function{}(), functional{}(), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %corBool%r %2"), function{}(), functional{}(), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %cxorBool%r %2"), function{}(), functional{}(), hook{}("BOOL.xor"), klabel{}("_xorBool_"), left{}(Lbl'Unds'xorBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1103,19,1103,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("xor"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %cxorInt%r %2"), function{}(), functional{}(), hook{}("INT.xor"), klabel{}("_xorInt_"), latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'xorInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,18,1250,190)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %corBool%r %2"), function{}(), functional{}(), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %cxorBool%r %2"), function{}(), functional{}(), hook{}("BOOL.xor"), left{}(Lbl'Unds'xorBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1103,19,1103,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("xor"), symbol'Kywd'{}("_xorBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %cxorInt%r %2"), function{}(), functional{}(), hook{}("INT.xor"), latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'xorInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,18,1250,190)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), symbol'Kywd'{}("_xorInt_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] @@ -175,7 +175,7 @@ module TEST hooked-symbol LblminInt'LParUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cminInt%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("INT.min"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1260,18,1260,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 #2) #1 #2)"), terminals{}("110101"), total{}()] symbol LblnoGeneratedCounterCell{}() : SortGeneratedCounterCellOpt{} [cellOptAbsent{}("GeneratedCounterCell"), constructor{}(), format{}("%cnoGeneratedCounterCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoKCell{}() : SortKCellOpt{} [cellOptAbsent{}("KCell"), constructor{}(), format{}("%cnoKCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [boolOperation{}(), format{}("%cnotBool%r %1"), function{}(), functional{}(), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [boolOperation{}(), format{}("%cnotBool%r %1"), function{}(), functional{}(), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] symbol Lblproject'Coln'Bool{}(SortK{}) : SortBool{} [format{}("%cproject:Bool%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), projection{}(), right{}(), terminals{}("1101")] symbol Lblproject'Coln'GeneratedCounterCell{}(SortK{}) : SortGeneratedCounterCell{} [format{}("%cproject:GeneratedCounterCell%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), projection{}(), right{}(), terminals{}("1101")] symbol Lblproject'Coln'GeneratedCounterCellOpt{}(SortK{}) : SortGeneratedCounterCellOpt{} [format{}("%cproject:GeneratedCounterCellOpt%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), projection{}(), right{}(), terminals{}("1101")] @@ -199,7 +199,7 @@ module TEST hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/n91a63s0zf1r2y83j431rjwirzyis4gp-k-5.6.130-c3e1fb7ba901cc28ec4bb52a676ea329ba19c955-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] // generated axioms axiom{R} \exists{R} (Val:SortKItem{}, \equals{SortKItem{}, R} (Val:SortKItem{}, inj{SortKCellOpt{}, SortKItem{}} (From:SortKCellOpt{}))) [subsort{SortKCellOpt{}, SortKItem{}}()] // subsort diff --git a/test/rpc-server/resources/smt/definition.kore b/test/rpc-server/resources/smt/definition.kore index 03a0988e26..d470647f44 100644 --- a/test/rpc-server/resources/smt/definition.kore +++ b/test/rpc-server/resources/smt/definition.kore @@ -83,64 +83,64 @@ module TEST // symbols hooked-symbol Lbl'Hash'if'UndsHash'then'UndsHash'else'UndsHash'fi'Unds'K-EQUAL-SYNTAX'Unds'Sort'Unds'Bool'Unds'Sort'Unds'Sort{SortSort}(SortBool{}, SortSort, SortSort) : SortSort [format{}("%c#if%r %1 %c#then%r %2 %c#else%r %3 %c#fi%r"), function{}(), functional{}(), hook{}("KEQUAL.ite"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(2264,26,2264,121)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("ite"), terminals{}("1010101"), total{}()] - hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), klabel{}(".List"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), klabel{}(".Map"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), klabel{}(".Set"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [format{}("%c.List%r"), function{}(), functional{}(), hook{}("LIST.unit"), latex{}("\\dotCt{List}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(937,19,937,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), symbol'Kywd'{}(".List"), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [format{}("%c.Map%r"), function{}(), functional{}(), hook{}("MAP.unit"), latex{}("\\dotCt{Map}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(248,18,248,124)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Map"), terminals{}("1"), total{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [format{}("%c.Set%r"), function{}(), functional{}(), hook{}("SET.unit"), latex{}("\\dotCt{Set}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(729,18,729,118)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(".Set"), terminals{}("1"), total{}()] symbol Lbl'-LT-'generatedCounter'-GT-'{}(SortInt{}) : SortGeneratedCounterCell{} [cell{}(), cellName{}("generatedCounter"), constructor{}(), format{}("%c%r%i%n%1%d%n%c%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("101")] symbol Lbl'-LT-'generatedTop'-GT-'{}(SortKCell{}, SortGeneratedCounterCell{}) : SortGeneratedTopCell{} [cell{}(), cellName{}("generatedTop"), constructor{}(), format{}("%1"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1001"), topcell{}()] symbol Lbl'-LT-'generatedTop'-GT-'-fragment{}(SortKCellOpt{}, SortGeneratedCounterCellOpt{}) : SortGeneratedTopCellFragment{} [cellFragment{}("GeneratedTopCell"), constructor{}(), format{}("%c-fragment%r %1 %2 %c-fragment%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1001")] symbol Lbl'-LT-'k'-GT-'{}(SortK{}) : SortKCell{} [cell{}(), cellName{}("k"), constructor{}(), format{}("%c%r%i%n%1%d%n%c%r"), functional{}(), injective{}(), left{}(), maincell{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(535,17,535,32)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/kast.md)"), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), priorities{}(), right{}(), terminals{}("101"), topcell{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), klabel{}("List:get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), klabel{}("List:range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("11010101")] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), klabel{}("ListItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}(), terminals{}("1101"), total{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), klabel{}("Map:lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("0101")] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), klabel{}("Map:update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010101"), total{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), klabel{}("Set:difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), klabel{}("Set:in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), klabel{}("SetItem"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("1101"), total{}()] - hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), klabel{}("_%Int_"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), klabel{}("_&Int_"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), klabel{}("_*Int_"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), klabel{}("_+Int_"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), klabel{}("_-Int_"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("LIST.get"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(956,20,956,99)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:get"), terminals{}("0101")] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("LIST.range"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1003,19,1003,120)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("List:range"), terminals{}("11010101")] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [format{}("%cListItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("LIST.element"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(945,19,945,132)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), symbol'Kywd'{}("ListItem"), terminals{}("1101"), total{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r"), function{}(), hook{}("MAP.lookup"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(271,20,271,113)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Map:lookup"), terminals{}("0101")] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), functional{}(), hook{}("MAP.update"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,18,290,140)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), prefer{}(), priorities{}(), right{}(), symbol'Kywd'{}("Map:update"), terminals{}("010101"), total{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [format{}("%1 %c-Set%r %2"), function{}(), functional{}(), hook{}("SET.difference"), latex{}("{#1}-_{\\it Set}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(769,18,769,142)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:difference"), terminals{}("010"), total{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("SET.in"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(777,19,777,102)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("Set:in"), terminals{}("010"), total{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("SET.element"), injective{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(737,18,737,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("SetItem"), terminals{}("1101"), total{}()] + hooked-symbol Lbl'UndsPerc'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c%%Int%r %2"), function{}(), hook{}("INT.tmod"), latex{}("{#1}\\mathrel{\\%_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1237,18,1237,171)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_%Int_"), terminals{}("010")] + hooked-symbol Lbl'UndsAnd-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c&Int%r %2"), function{}(), functional{}(), hook{}("INT.and"), latex{}("{#1}\\mathrel{\\&_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsAnd-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1248,18,1248,184)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("andInt"), symbol'Kywd'{}("_&Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsStar'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c*Int%r %2"), function{}(), functional{}(), hook{}("INT.mul"), latex{}("{#1}\\mathrel{\\ast_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'modInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1233,18,1233,183)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("*"), symbol'Kywd'{}("_*Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPlus'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c+Int%r %2"), function{}(), functional{}(), hook{}("INT.add"), latex{}("{#1}\\mathrel{+_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1242,18,1242,180)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("+"), symbol'Kywd'{}("_+Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'-Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c-Int%r %2"), function{}(), functional{}(), hook{}("INT.sub"), latex{}("{#1}\\mathrel{-_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1243,18,1243,174)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smt-hook{}("-"), symbol'Kywd'{}("_-Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%1 %c-Map%r %2"), function{}(), functional{}(), hook{}("MAP.difference"), latex{}("{#1}-_{\\it Map}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(311,18,311,116)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsSlsh'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c/Int%r %2"), function{}(), hook{}("INT.tdiv"), klabel{}("_/Int_"), latex{}("{#1}\\mathrel{\\div_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1236,18,1236,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-LT--LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c<=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), klabel{}("_>=Int_"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), klabel{}("_>>Int_"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), klabel{}("_>Int_"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), klabel{}("_List_"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}(), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), klabel{}("_Map_"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), klabel{}("_Set_"), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] + hooked-symbol Lbl'Unds-LT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c=Int%r %2"), function{}(), functional{}(), hook{}("INT.ge"), latex{}("{#1}\\mathrel{\\geq_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1306,19,1306,166)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">="), symbol'Kywd'{}("_>=Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds-GT--GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c>>Int%r %2"), function{}(), hook{}("INT.shr"), latex{}("{#1}\\mathrel{\\gg_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1245,18,1245,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("shrInt"), symbol'Kywd'{}("_>>Int_"), terminals{}("010")] + hooked-symbol Lbl'Unds-GT-'Int'Unds'{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %c>Int%r %2"), function{}(), functional{}(), hook{}("INT.gt"), latex{}("{#1}\\mathrel{>_{\\scriptstyle\\it Int}}{#2}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1307,19,1307,161)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}(">"), symbol'Kywd'{}("_>Int_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [assoc{}(), element{}(LblListItem{}()), format{}("%1%n%2"), function{}(), functional{}(), hook{}("LIST.concat"), left{}(Lbl'Unds'List'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(929,19,929,188)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("smt_seq_concat"), symbol'Kywd'{}("_List_"), terminals{}("00"), total{}(), unit{}(Lbl'Stop'List{}())] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [assoc{}(), comm{}(), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1%n%2"), function{}(), hook{}("MAP.concat"), index{}("0"), left{}(Lbl'Unds'Map'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(240,18,240,173)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Map_"), terminals{}("00"), unit{}(Lbl'Stop'Map{}())] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [assoc{}(), comm{}(), element{}(LblSetItem{}()), format{}("%1%n%2"), function{}(), hook{}("SET.concat"), idem{}(), left{}(Lbl'Unds'Set'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(721,18,721,165)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_Set_"), terminals{}("00"), unit{}(Lbl'Stop'Set{}())] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}(), hook{}("LIST.update"), klabel{}("List:set"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(965,19,965,108)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101")] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), klabel{}("_[_<-undef]"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}(), terminals{}("010111"), total{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}(), functional{}(), hook{}("MAP.remove"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,117)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), symbol'Kywd'{}("_[_<-undef]"), terminals{}("010111"), total{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}(), functional{}(), hook{}("MAP.lookupOrDefault"), klabel{}("Map:lookupOrDefault"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(281,20,281,134)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), total{}()] - hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), klabel{}("_^%Int__"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}(), terminals{}("0100")] - hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), klabel{}("_^Int_"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %candBool%r %2"), function{}(), functional{}(), hook{}("BOOL.and"), klabel{}("_andBool_"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), hook{}("BOOL.andThen"), klabel{}("_andThenBool_"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), klabel{}("_divInt_"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}(), terminals{}("010")] + hooked-symbol Lbl'UndsXor-Perc'Int'UndsUnds'{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^%%Int%r %2 %3"), function{}(), hook{}("INT.powmod"), left{}(Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'UndsXor-'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1231,18,1231,139)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("(mod (^ #1 #2) #3)"), symbol'Kywd'{}("_^%Int__"), terminals{}("0100")] + hooked-symbol Lbl'UndsXor-'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %c^Int%r %2"), function{}(), hook{}("INT.pow"), latex{}("{#1}\\mathrel{{\\char`\\^}_{\\!\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsXor-'Int'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1230,18,1230,178)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("^"), symbol'Kywd'{}("_^Int_"), terminals{}("010")] + hooked-symbol Lbl'Unds'andBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %candBool%r %2"), function{}(), functional{}(), hook{}("BOOL.and"), latex{}("{#1}\\wedge_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'andBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1101,19,1101,192)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'andThenBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %candThenBool%r %2"), function{}(), functional{}(), hook{}("BOOL.andThen"), left{}(Lbl'Unds'andThenBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1102,19,1102,154)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("and"), symbol'Kywd'{}("_andThenBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'divInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cdivInt%r %2"), function{}(), hook{}("INT.ediv"), left{}(Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1239,18,1239,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("div"), symbol'Kywd'{}("_divInt_"), terminals{}("010")] symbol Lbl'Unds'dividesInt'UndsUnds'INT-COMMON'Unds'Bool'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortBool{} [format{}("%1 %cdividesInt%r %2"), function{}(), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1318,19,1318,53)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), hook{}("BOOL.implies"), klabel{}("_impliesBool_"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'impliesBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %cimpliesBool%r %2"), function{}(), functional{}(), hook{}("BOOL.implies"), left{}(Lbl'Unds'impliesBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1106,19,1106,153)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("=>"), symbol'Kywd'{}("_impliesBool_"), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [format{}("%1 %cin%r %2"), function{}(), functional{}(), hook{}("LIST.in"), klabel{}("_inList_"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1012,19,1012,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.in_keys"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(357,19,357,89)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), total{}()] - hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), klabel{}("_modInt_"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}(), terminals{}("010")] - hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %corBool%r %2"), function{}(), functional{}(), hook{}("BOOL.or"), klabel{}("_orBool_"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), hook{}("BOOL.orElse"), klabel{}("_orElseBool_"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %cxorBool%r %2"), function{}(), functional{}(), hook{}("BOOL.xor"), klabel{}("_xorBool_"), left{}(Lbl'Unds'xorBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1103,19,1103,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("xor"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %cxorInt%r %2"), function{}(), functional{}(), hook{}("INT.xor"), klabel{}("_xorInt_"), latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'xorInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,18,1250,190)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), klabel{}("_|->_"), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), terminals{}("010"), total{}()] - hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), klabel{}("_|Int_"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}(), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'modInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%1 %cmodInt%r %2"), function{}(), hook{}("INT.emod"), left{}(Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1240,18,1240,122)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smt-hook{}("mod"), symbol'Kywd'{}("_modInt_"), terminals{}("010")] + hooked-symbol Lbl'Unds'orBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %corBool%r %2"), function{}(), functional{}(), hook{}("BOOL.or"), latex{}("{#1}\\vee_{\\scriptstyle\\it Bool}{#2}"), left{}(Lbl'Unds'orBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1104,19,1104,187)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'orElseBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %corElseBool%r %2"), function{}(), functional{}(), hook{}("BOOL.orElse"), left{}(Lbl'Unds'orElseBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1105,19,1105,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("or"), symbol'Kywd'{}("_orElseBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'xorBool'Unds'{}(SortBool{}, SortBool{}) : SortBool{} [boolOperation{}(), format{}("%1 %cxorBool%r %2"), function{}(), functional{}(), hook{}("BOOL.xor"), left{}(Lbl'Unds'xorBool'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1103,19,1103,146)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}()), right{}(), smt-hook{}("xor"), symbol'Kywd'{}("_xorBool_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'Unds'xorInt'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %cxorInt%r %2"), function{}(), functional{}(), hook{}("INT.xor"), latex{}("{#1}\\mathrel{\\oplus_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'Unds'xorInt'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1250,18,1250,190)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPipe'Int'Unds'{}()), right{}(), smtlib{}("xorInt"), symbol'Kywd'{}("_xorInt_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [format{}("%1 %c|->%r %2"), function{}(), functional{}(), hook{}("MAP.element"), injective{}(), latex{}("{#1}\\mapsto{#2}"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,151)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_|->_"), terminals{}("010"), total{}()] + hooked-symbol Lbl'UndsPipe'Int'Unds'{}(SortInt{}, SortInt{}) : SortInt{} [comm{}(), format{}("%1 %c|Int%r %2"), function{}(), functional{}(), hook{}("INT.or"), latex{}("{#1}\\mathrel{|_{\\scriptstyle\\it Int}}{#2}"), left{}(Lbl'UndsPipe'Int'Unds'{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1252,18,1252,181)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smtlib{}("orInt"), symbol'Kywd'{}("_|Int_"), terminals{}("010"), total{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [comm{}(), format{}("%1 %c|Set%r %2"), function{}(), functional{}(), hook{}("SET.union"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(748,18,748,92)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), total{}()] hooked-symbol LblabsInt'LParUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int{}(SortInt{}) : SortInt{} [format{}("%cabsInt%r %c(%r %1 %c)%r"), function{}(), functional{}(), hook{}("INT.abs"), klabel{}("absInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1269,18,1269,119)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 0) (- 0 #1) #1)"), terminals{}("1101"), total{}()] hooked-symbol LblbitRangeInt'LParUndsCommUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}, SortInt{}) : SortInt{} [format{}("%cbitRangeInt%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}(), hook{}("INT.bitRange"), klabel{}("bitRangeInt"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1294,18,1294,103)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] @@ -176,7 +176,7 @@ module TEST hooked-symbol LblminInt'LParUndsCommUndsRParUnds'INT-COMMON'Unds'Int'Unds'Int'Unds'Int{}(SortInt{}, SortInt{}) : SortInt{} [format{}("%cminInt%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("INT.min"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1260,18,1260,114)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), smt-hook{}("(ite (< #1 #2) #1 #2)"), terminals{}("110101"), total{}()] symbol LblnoGeneratedCounterCell{}() : SortGeneratedCounterCellOpt{} [cellOptAbsent{}("GeneratedCounterCell"), constructor{}(), format{}("%cnoGeneratedCounterCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] symbol LblnoKCell{}() : SortKCellOpt{} [cellOptAbsent{}("KCell"), constructor{}(), format{}("%cnoKCell%r"), functional{}(), injective{}(), left{}(), priorities{}(), right{}(), terminals{}("1")] - hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [boolOperation{}(), format{}("%cnotBool%r %1"), function{}(), functional{}(), hook{}("BOOL.not"), klabel{}("notBool_"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol LblnotBool'Unds'{}(SortBool{}) : SortBool{} [boolOperation{}(), format{}("%cnotBool%r %1"), function{}(), functional{}(), hook{}("BOOL.not"), latex{}("\\neg_{\\scriptstyle\\it Bool}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1100,19,1100,179)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'Unds'orElseBool'Unds'{}(),Lbl'Unds'orBool'Unds'{}(),Lbl'UndsEqlsSlshEqls'Bool'Unds'{}(),Lbl'Unds'andThenBool'Unds'{}(),Lbl'Unds'impliesBool'Unds'{}(),Lbl'UndsEqlsEqls'Bool'Unds'{}(),Lbl'Unds'andBool'Unds'{}(),Lbl'Unds'xorBool'Unds'{}()), right{}(), smt-hook{}("not"), symbol'Kywd'{}("notBool_"), terminals{}("10"), total{}()] symbol Lblpow256'Unds'TEST'Unds'Int{}() : SortInt{} [alias'Kywd'{}(), format{}("%cpow256%r"), functional{}(), injective{}(), left{}(), macro{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(4,18,4,48)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/jost/work/RV/code/haskell-backend/test/rpc-server/resources/smt/smt.k)"), priorities{}(), right{}(), terminals{}("1")] symbol Lblproject'Coln'Bool{}(SortK{}) : SortBool{} [format{}("%cproject:Bool%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), projection{}(), right{}(), terminals{}("1101")] symbol Lblproject'Coln'GeneratedCounterCell{}(SortK{}) : SortGeneratedCounterCell{} [format{}("%cproject:GeneratedCounterCell%r %c(%r %1 %c)%r"), function{}(), left{}(), priorities{}(), projection{}(), right{}(), terminals{}("1101")] @@ -201,7 +201,7 @@ module TEST hooked-symbol LblupdateList'LParUndsCommUndsCommUndsRParUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'List{}(SortList{}, SortInt{}, SortList{}) : SortList{} [format{}("%cupdateList%r %c(... %r dest: %1 %c,%r index: %2 %c,%r src: %3 %c)%r"), function{}(), hook{}("LIST.updateAll"), klabel{}("updateList"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(984,19,984,97)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("11010101")] hooked-symbol LblupdateMap'LParUndsCommUndsRParUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [format{}("%cupdateMap%r %c(%r %1 %c,%r %2 %c)%r"), function{}(), functional{}(), hook{}("MAP.updateAll"), klabel{}("updateMap"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(324,18,324,87)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("110101"), total{}()] hooked-symbol Lblvalues'LParUndsRParUnds'MAP'Unds'List'Unds'Map{}(SortMap{}) : SortList{} [format{}("%cvalues%r %c(%r %1 %c)%r"), function{}(), hook{}("MAP.values"), klabel{}("values"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(365,19,365,77)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("1101")] - hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), klabel{}("~Int_"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}(), terminals{}("10"), total{}()] + hooked-symbol Lbl'Tild'Int'Unds'{}(SortInt{}) : SortInt{} [format{}("%c~Int%r %1"), function{}(), functional{}(), hook{}("INT.not"), latex{}("\\mathop{\\sim_{\\scriptstyle\\it Int}}{#1}"), left{}(), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(1228,18,1228,168)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/nix/store/wl08fk94sn836pjaxlk2s011bl2b15qj-k-5.6.138-25aea7e7668d097755d067023db77b7b16f9d98e-maven/include/kframework/builtin/domains.md)"), priorities{}(Lbl'UndsPlus'Int'Unds'{}(),Lbl'Unds'divInt'Unds'{}(),Lbl'UndsPerc'Int'Unds'{}(),Lbl'Unds-GT--GT-'Int'Unds'{}(),Lbl'Unds'xorInt'Unds'{}(),Lbl'UndsSlsh'Int'Unds'{}(),Lbl'UndsAnd-'Int'Unds'{}(),Lbl'UndsXor-'Int'Unds'{}(),Lbl'Unds-LT--LT-'Int'Unds'{}(),Lbl'UndsStar'Int'Unds'{}(),Lbl'UndsPipe'Int'Unds'{}(),Lbl'Unds'modInt'Unds'{}(),Lbl'UndsXor-Perc'Int'UndsUnds'{}(),Lbl'Unds'-Int'Unds'{}()), right{}(), smtlib{}("notInt"), symbol'Kywd'{}("~Int_"), terminals{}("10"), total{}()] // generated axioms axiom{R} \exists{R} (Val:SortKItem{}, \equals{SortKItem{}, R} (Val:SortKItem{}, inj{SortKCellOpt{}, SortKItem{}} (From:SortKCellOpt{}))) [subsort{SortKCellOpt{}, SortKItem{}}()] // subsort diff --git a/test/tiny/test-a-to-c-vdefinition.kore b/test/tiny/test-a-to-c-vdefinition.kore index 252b1eb913..b345a27578 100644 --- a/test/tiny/test-a-to-c-vdefinition.kore +++ b/test/tiny/test-a-to-c-vdefinition.kore @@ -85,33 +85,33 @@ module KARL hooked-sort SortBool{} [hook{}("BOOL.Bool"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(779,3,779,31)"), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), hasDomainValues{}()] // symbols - hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), klabel{}(".List"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(648,19,648,146)"), left{}(), format{}("%c.List%r"), function{}()] - hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Map"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,128)"), left{}(), format{}("%c.Map%r"), function{}()] - hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1"), klabel{}(".Set"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(528,18,528,122)"), left{}(), format{}("%c.Set%r"), function{}()] + hooked-symbol Lbl'Stop'List{}() : SortList{} [latex{}("\\dotCt{List}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".List"), priorities{}(), right{}(), smtlib{}("smt_seq_nil"), terminals{}("1"), hook{}("LIST.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(648,19,648,146)"), left{}(), format{}("%c.List%r"), function{}()] + hooked-symbol Lbl'Stop'Map{}() : SortMap{} [latex{}("\\dotCt{Map}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Map"), priorities{}(), right{}(), terminals{}("1"), hook{}("MAP.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(257,18,257,128)"), left{}(), format{}("%c.Map%r"), function{}()] + hooked-symbol Lbl'Stop'Set{}() : SortSet{} [latex{}("\\dotCt{Set}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(".Set"), priorities{}(), right{}(), terminals{}("1"), hook{}("SET.unit"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(528,18,528,122)"), left{}(), format{}("%c.Set%r"), function{}()] symbol Lbl'-LT-'generatedCounter'-GT-'{}(SortInt{}) : SortGeneratedCounterCell{} [functional{}(), constructor{}(), cellName{}("generatedCounter"), priorities{}(), right{}(), terminals{}("101"), left{}(), format{}("%c%r%i%n%1%d%n%c%r"), injective{}(), cell{}()] symbol Lbl'-LT-'generatedTop'-GT-'{}(SortKCell{}, SortGeneratedCounterCell{}) : SortGeneratedTopCell{} [functional{}(), constructor{}(), cellName{}("generatedTop"), priorities{}(), right{}(), terminals{}("1001"), left{}(), format{}("%1"), injective{}(), cell{}(), topcell{}()] symbol Lbl'-LT-'generatedTop'-GT-'-fragment{}(SortKCellOpt{}, SortGeneratedCounterCellOpt{}) : SortGeneratedTopCellFragment{} [functional{}(), constructor{}(), cellFragment{}("GeneratedTopCell"), priorities{}(), right{}(), terminals{}("1001"), left{}(), format{}("%c-fragment%r %1 %2 %c-fragment%r"), injective{}()] symbol Lbl'-LT-'k'-GT-'{}(SortK{}) : SortKCell{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/kast.md)"), cellName{}("k"), maincell{}(), priorities{}(), org'Stop'kframework'Stop'definition'Stop'Production{}("syntax #RuleContent ::= #RuleBody [klabel(#ruleNoConditions), symbol]"), right{}(), terminals{}("101"), contentStartLine{}("521"), contentStartColumn{}("17"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(521,17,521,32)"), left{}(), format{}("%c%r%i%n%1%d%n%c%r"), injective{}(), cell{}(), topcell{}()] - hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("List:get"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,20,667,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("11010101"), klabel{}("List:range"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(714,19,714,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] - hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), klabel{}("ListItem"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(656,19,656,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] - hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("0101"), klabel{}("Map:lookup"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(280,20,280,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] - hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), klabel{}("Map:update"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:difference"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(568,18,568,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] - hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010"), klabel{}("Set:in"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(576,19,576,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] - hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("1101"), klabel{}("SetItem"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(536,18,536,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblList'Coln'get{}(SortList{}, SortInt{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:get"), priorities{}(), right{}(), terminals{}("0101"), hook{}("LIST.get"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(667,20,667,98)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblList'Coln'range{}(SortList{}, SortInt{}, SortInt{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("List:range"), priorities{}(), right{}(), terminals{}("11010101"), hook{}("LIST.range"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(714,19,714,119)"), left{}(), format{}("%crange%r %c(%r %1 %c,%r %2 %c,%r %3 %c)%r"), function{}()] + hooked-symbol LblListItem{}(SortKItem{}) : SortList{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("ListItem"), priorities{}(), right{}(), smtlib{}("smt_seq_elem"), terminals{}("1101"), hook{}("LIST.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(656,19,656,136)"), left{}(), format{}("%cListItem%r %c(%r %1 %c)%r"), function{}()] + hooked-symbol LblMap'Coln'lookup{}(SortMap{}, SortKItem{}) : SortKItem{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:lookup"), priorities{}(), right{}(), terminals{}("0101"), hook{}("MAP.lookup"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(280,20,280,112)"), left{}(), format{}("%1 %c[%r %2 %c]%r"), function{}()] + hooked-symbol LblMap'Coln'update{}(SortMap{}, SortKItem{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Map:update"), priorities{}(), prefer{}(), right{}(), terminals{}("010101"), hook{}("MAP.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(299,18,299,144)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] + hooked-symbol LblSet'Coln'difference{}(SortSet{}, SortSet{}) : SortSet{} [latex{}("{#1}-_{\\it Set}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:difference"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(568,18,568,146)"), left{}(), format{}("%1 %c-Set%r %2"), function{}()] + hooked-symbol LblSet'Coln'in{}(SortKItem{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("Set:in"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(576,19,576,106)"), left{}(), format{}("%1 %cin%r %2"), function{}()] + hooked-symbol LblSetItem{}(SortKItem{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("SetItem"), priorities{}(), right{}(), terminals{}("1101"), hook{}("SET.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(536,18,536,112)"), left{}(), format{}("%cSetItem%r %c(%r %1 %c)%r"), function{}()] hooked-symbol Lbl'Unds'-Map'UndsUnds'MAP'Unds'Map'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortMap{} [latex{}("{#1}-_{\\it Map}{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.difference"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(320,18,320,120)"), left{}(), format{}("%1 %c-Map%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Map'UndsUnds'MAP'Unds'Bool'Unds'Map'Unds'Map{}(SortMap{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("MAP.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(392,19,392,91)"), left{}(), format{}("%1 %c<=Map%r %2"), function{}()] hooked-symbol Lbl'Unds-LT-Eqls'Set'UndsUnds'SET'Unds'Bool'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.inclusion"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(585,19,585,85)"), left{}(), format{}("%1 %c<=Set%r %2"), function{}()] - hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}(), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), klabel{}("_List_"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(640,19,640,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), klabel{}("_Map_"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(249,18,249,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] - hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}(), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), klabel{}("_Set_"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(520,18,520,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'List'Unds'{}(SortList{}, SortList{}) : SortList{} [unit{}(Lbl'Stop'List{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(LblListItem{}()), symbol'Kywd'{}("_List_"), priorities{}(), right{}(), assoc{}(), smtlib{}("smt_seq_concat"), terminals{}("00"), hook{}("LIST.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(640,19,640,192)"), left{}(Lbl'Unds'List'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Map'Unds'{}(SortMap{}, SortMap{}) : SortMap{} [unit{}(Lbl'Stop'Map{}()), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(Lbl'UndsPipe'-'-GT-Unds'{}()), symbol'Kywd'{}("_Map_"), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), index{}("0"), hook{}("MAP.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(249,18,249,172)"), left{}(Lbl'Unds'Map'Unds'{}()), format{}("%1%n%2"), function{}()] + hooked-symbol Lbl'Unds'Set'Unds'{}(SortSet{}, SortSet{}) : SortSet{} [unit{}(Lbl'Stop'Set{}()), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), element{}(LblSetItem{}()), symbol'Kywd'{}("_Set_"), idem{}(), comm{}(), priorities{}(), right{}(), assoc{}(), terminals{}("00"), hook{}("SET.concat"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(520,18,520,176)"), left{}(Lbl'Unds'Set'Unds'{}()), format{}("%1%n%2"), function{}()] hooked-symbol Lbl'UndsLSqBUnds-LT-'-'UndsRSqBUnds'LIST'Unds'List'Unds'List'Unds'Int'Unds'KItem{}(SortList{}, SortInt{}, SortKItem{}) : SortList{} [org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010101"), klabel{}("List:set"), hook{}("LIST.update"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(676,19,676,107)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %3 %c]%r"), function{}()] - hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(), right{}(), terminals{}("010111"), klabel{}("_[_<-undef]"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(308,18,308,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] + hooked-symbol Lbl'UndsLSqBUnds-LT-'-undef'RSqB'{}(SortMap{}, SortKItem{}) : SortMap{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_[_<-undef]"), priorities{}(), right{}(), terminals{}("010111"), hook{}("MAP.remove"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(308,18,308,121)"), left{}(), format{}("%1 %c[%r %2 %c<-%r %cundef%r %c]%r"), function{}()] hooked-symbol Lbl'UndsLSqBUndsRSqB'orDefault'UndsUnds'MAP'Unds'KItem'Unds'Map'Unds'KItem'Unds'KItem{}(SortMap{}, SortKItem{}, SortKItem{}) : SortKItem{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010110"), klabel{}("Map:lookupOrDefault"), hook{}("MAP.lookupOrDefault"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(290,20,290,138)"), left{}(), format{}("%1 %c[%r %2 %c]%r %corDefault%r %3"), function{}()] hooked-symbol Lbl'Unds'in'UndsUnds'LIST'Unds'Bool'Unds'KItem'Unds'List{}(SortKItem{}, SortList{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), klabel{}("_inList_"), hook{}("LIST.in"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(723,19,723,101)"), left{}(), format{}("%1 %cin%r %2"), function{}()] hooked-symbol Lbl'Unds'in'Unds'keys'LParUndsRParUnds'MAP'Unds'Bool'Unds'KItem'Unds'Map{}(SortKItem{}, SortMap{}) : SortBool{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("01101"), hook{}("MAP.in_keys"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(366,19,366,93)"), left{}(), format{}("%1 %cin_keys%r %c(%r %2 %c)%r"), function{}()] - hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}(), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), klabel{}("_|->_"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(266,18,266,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] + hooked-symbol Lbl'UndsPipe'-'-GT-Unds'{}(SortKItem{}, SortKItem{}) : SortMap{} [latex{}("{#1}\\mapsto{#2}"), functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), symbol'Kywd'{}("_|->_"), priorities{}(Lbl'Stop'Map{}(),Lbl'Unds'Map'Unds'{}()), right{}(Lbl'UndsPipe'-'-GT-Unds'{}()), terminals{}("010"), hook{}("MAP.element"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(266,18,266,144)"), left{}(Lbl'UndsPipe'-'-GT-Unds'{}()), format{}("%1 %c|->%r %2"), function{}()] hooked-symbol Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}(SortSet{}, SortSet{}) : SortSet{} [functional{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/k/k-distribution/target/release/k/include/kframework/builtin/domains.md)"), priorities{}(), right{}(), terminals{}("010"), hook{}("SET.union"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(547,18,547,88)"), left{}(Lbl'UndsPipe'Set'UndsUnds'SET'Unds'Set'Unds'Set'Unds'Set{}()), format{}("%1 %c|Set%r %2"), function{}()] symbol Lbla'Unds'TINY'Unds'S{}() : SortS{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/kore-alt/kore/test/tiny/./tiny.k)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3,16,3,18)"), left{}(), format{}("%ca%r"), injective{}()] symbol Lblb'Unds'TINY'Unds'S{}() : SortS{} [functional{}(), constructor{}(), org'Stop'kframework'Stop'attributes'Stop'Source{}("Source(/home/mirceas/work/RV/kore-alt/kore/test/tiny/./tiny.k)"), priorities{}(), right{}(), terminals{}("1"), org'Stop'kframework'Stop'attributes'Stop'Location{}("Location(3,22,3,24)"), left{}(), format{}("%cb%r"), injective{}()]